pub struct ProtocolPendingOutboundDebug {
pub message_id: String,
pub chat_id: String,
pub recipient_owner_hex: String,
pub reason: String,
pub probe_local_sibling_roster: bool,
pub delivered_remote_device_hexes: Vec<String>,
pub delivered_local_device_hexes: Vec<String>,
pub remaining_remote_targets: Vec<String>,
pub remaining_local_sibling_targets: Vec<String>,
pub queued_targets: Vec<String>,
pub next_retry_at_secs: u64,
}Fields§
§message_id: String§chat_id: String§recipient_owner_hex: String§reason: String§probe_local_sibling_roster: bool§delivered_remote_device_hexes: Vec<String>§delivered_local_device_hexes: Vec<String>§remaining_remote_targets: Vec<String>§remaining_local_sibling_targets: Vec<String>§queued_targets: Vec<String>§next_retry_at_secs: u64Trait Implementations§
Source§impl Clone for ProtocolPendingOutboundDebug
impl Clone for ProtocolPendingOutboundDebug
Source§fn clone(&self) -> ProtocolPendingOutboundDebug
fn clone(&self) -> ProtocolPendingOutboundDebug
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 ProtocolPendingOutboundDebug
impl Debug for ProtocolPendingOutboundDebug
Source§impl Default for ProtocolPendingOutboundDebug
impl Default for ProtocolPendingOutboundDebug
Source§fn default() -> ProtocolPendingOutboundDebug
fn default() -> ProtocolPendingOutboundDebug
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProtocolPendingOutboundDebug
impl<'de> Deserialize<'de> for ProtocolPendingOutboundDebug
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 ProtocolPendingOutboundDebug
impl RefUnwindSafe for ProtocolPendingOutboundDebug
impl Send for ProtocolPendingOutboundDebug
impl Sync for ProtocolPendingOutboundDebug
impl Unpin for ProtocolPendingOutboundDebug
impl UnsafeUnpin for ProtocolPendingOutboundDebug
impl UnwindSafe for ProtocolPendingOutboundDebug
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