pub struct BatchStatusReport {
pub date: Date,
pub time: Time,
pub success: bool,
}Expand description
Status information for a status uploaded to a batch status endpoint.
Returned by the crate::Client::add_batch_status and crate::Client::add_batch_status_net endpoints.
Fields§
§date: DateThe date for this status.
time: TimeThe time for this status.
success: boolWhether this status was successful.
Trait Implementations§
Source§impl Clone for BatchStatusReport
impl Clone for BatchStatusReport
Source§fn clone(&self) -> BatchStatusReport
fn clone(&self) -> BatchStatusReport
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 BatchStatusReport
impl Debug for BatchStatusReport
Source§impl<'de> Deserialize<'de> for BatchStatusReport
impl<'de> Deserialize<'de> for BatchStatusReport
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 BatchStatusReport
impl RefUnwindSafe for BatchStatusReport
impl Send for BatchStatusReport
impl Sync for BatchStatusReport
impl Unpin for BatchStatusReport
impl UnwindSafe for BatchStatusReport
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