pub struct ResponseBytes {
pub id: String,
pub seqlen: Option<u32>,
pub seqnum: Option<u32>,
pub result: Option<Vec<u8>>,
pub error: Option<Error>,
}
Fields§
§id: String
§seqlen: Option<u32>
§seqnum: Option<u32>
§result: Option<Vec<u8>>
§error: Option<Error>
Trait Implementations§
Source§impl Debug for ResponseBytes
impl Debug for ResponseBytes
Source§impl<'de> Deserialize<'de> for ResponseBytes
impl<'de> Deserialize<'de> for ResponseBytes
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ResponseBytes
impl RefUnwindSafe for ResponseBytes
impl Send for ResponseBytes
impl Sync for ResponseBytes
impl Unpin for ResponseBytes
impl UnwindSafe for ResponseBytes
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more