pub async fn send_custom_query<C>(
    _from_actor: &str,
    arg: C,
    target: &'static [u8],
    timeout_ms: Option<u64>
) -> Result<<C as Request>::Response, Errors>where
    C: Request + ToBytes + Clone,
    <C as Request>::Response: for<'a> FromBytes<'a> + Send,
Expand description

Send query to state node via libp2p Can set a custom target actor.