pub struct Call {
pub seq: u64,
pub is_client_error: bool,
pub state: Arc<Mutex<Status>>,
pub error: String,
pub reply_data: Vec<u8>,
}
Fields§
§seq: u64
§is_client_error: bool
§state: Arc<Mutex<Status>>
§error: String
§reply_data: Vec<u8>
Implementations§
Trait Implementations§
Auto Trait Implementations§
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