pub struct CheckpointDelivery {
pub messages: Vec<PluginMessage>,
pub transient_messages: Vec<PluginMessage>,
pub turn_causes: Vec<TurnCause>,
}Fields§
§messages: Vec<PluginMessage>§transient_messages: Vec<PluginMessage>§turn_causes: Vec<TurnCause>Trait Implementations§
Source§impl Clone for CheckpointDelivery
impl Clone for CheckpointDelivery
Source§fn clone(&self) -> CheckpointDelivery
fn clone(&self) -> CheckpointDelivery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CheckpointDelivery
impl Debug for CheckpointDelivery
Source§impl Default for CheckpointDelivery
impl Default for CheckpointDelivery
Source§fn default() -> CheckpointDelivery
fn default() -> CheckpointDelivery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CheckpointDelivery
impl<'de> Deserialize<'de> for CheckpointDelivery
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CheckpointDelivery, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CheckpointDelivery, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for CheckpointDelivery
impl Serialize for CheckpointDelivery
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 CheckpointDelivery
impl RefUnwindSafe for CheckpointDelivery
impl Send for CheckpointDelivery
impl Sync for CheckpointDelivery
impl Unpin for CheckpointDelivery
impl UnsafeUnpin for CheckpointDelivery
impl UnwindSafe for CheckpointDelivery
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