pub struct SendResult {
pub session_id: SessionId,
pub success: bool,
pub error: Option<String>,
}Expand description
Result of a multi-session send operation.
Fields§
§session_id: SessionIdThe session the data was sent to.
success: boolWhether the send succeeded.
error: Option<String>Error message if failed.
Trait Implementations§
Source§impl Clone for SendResult
impl Clone for SendResult
Source§fn clone(&self) -> SendResult
fn clone(&self) -> SendResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SendResult
impl RefUnwindSafe for SendResult
impl Send for SendResult
impl Sync for SendResult
impl Unpin for SendResult
impl UnwindSafe for SendResult
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