pub struct DeliveryEnvelope {
pub gid: Uuid,
pub version: Version,
pub from: Address,
pub to: Address,
pub self_encrypted: bool,
pub timestamp: DateTime<Utc>,
pub payload: Payload<PrivateEnvelope>,
}Fields§
§gid: Uuid§version: Version§from: Address§to: Address§self_encrypted: bool§timestamp: DateTime<Utc>§payload: Payload<PrivateEnvelope>Trait Implementations§
Source§impl Clone for DeliveryEnvelope
impl Clone for DeliveryEnvelope
Source§fn clone(&self) -> DeliveryEnvelope
fn clone(&self) -> DeliveryEnvelope
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 DeliveryEnvelope
impl Debug for DeliveryEnvelope
Source§impl<'de> Deserialize<'de> for DeliveryEnvelope
impl<'de> Deserialize<'de> for DeliveryEnvelope
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<DeliveryEnvelope, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<DeliveryEnvelope, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for DeliveryEnvelope
impl Serialize for DeliveryEnvelope
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for DeliveryEnvelope
impl RefUnwindSafe for DeliveryEnvelope
impl Send for DeliveryEnvelope
impl Sync for DeliveryEnvelope
impl Unpin for DeliveryEnvelope
impl UnsafeUnpin for DeliveryEnvelope
impl UnwindSafe for DeliveryEnvelope
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