pub struct MasterLogResult {
pub ok: bool,
pub status_code: Option<u16>,
pub event_id: Option<String>,
pub error: Option<String>,
pub response: Option<Value>,
pub queued: bool,
pub accepted: Option<usize>,
}Fields§
§ok: bool§status_code: Option<u16>§event_id: Option<String>§error: Option<String>§response: Option<Value>§queued: bool§accepted: Option<usize>Implementations§
Trait Implementations§
Source§impl Clone for MasterLogResult
impl Clone for MasterLogResult
Source§fn clone(&self) -> MasterLogResult
fn clone(&self) -> MasterLogResult
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 moreSource§impl Debug for MasterLogResult
impl Debug for MasterLogResult
Source§impl From<MasterLogError> for MasterLogResult
impl From<MasterLogError> for MasterLogResult
Source§fn from(error: MasterLogError) -> Self
fn from(error: MasterLogError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MasterLogResult
impl RefUnwindSafe for MasterLogResult
impl Send for MasterLogResult
impl Sync for MasterLogResult
impl Unpin for MasterLogResult
impl UnsafeUnpin for MasterLogResult
impl UnwindSafe for MasterLogResult
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