pub enum OutboxReadDate {
OutboxReadDate(OutboxReadDate),
}Expand description
Variants§
OutboxReadDate(OutboxReadDate)
Trait Implementations§
Source§impl Clone for OutboxReadDate
impl Clone for OutboxReadDate
Source§fn clone(&self) -> OutboxReadDate
fn clone(&self) -> OutboxReadDate
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 OutboxReadDate
impl Debug for OutboxReadDate
Source§impl Deserializable for OutboxReadDate
impl Deserializable for OutboxReadDate
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<OutboxReadDate> for OutboxReadDate
impl From<OutboxReadDate> for OutboxReadDate
Source§fn from(x: OutboxReadDate) -> Self
fn from(x: OutboxReadDate) -> Self
Converts to this type from the input type.
Source§impl PartialEq for OutboxReadDate
impl PartialEq for OutboxReadDate
Source§impl Serializable for OutboxReadDate
impl Serializable for OutboxReadDate
Source§impl TryFrom<OutboxReadDate> for OutboxReadDate
impl TryFrom<OutboxReadDate> for OutboxReadDate
Source§type Error = OutboxReadDate
type Error = OutboxReadDate
The type returned in the event of a conversion error.
impl StructuralPartialEq for OutboxReadDate
Auto Trait Implementations§
impl Freeze for OutboxReadDate
impl RefUnwindSafe for OutboxReadDate
impl Send for OutboxReadDate
impl Sync for OutboxReadDate
impl Unpin for OutboxReadDate
impl UnsafeUnpin for OutboxReadDate
impl UnwindSafe for OutboxReadDate
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