pub enum DataReliability {
ReliableOrdered,
ReliableUnordered,
MaxRetransmits {
ordered: bool,
count: u16,
},
MaxLifetime {
ordered: bool,
milliseconds: u32,
},
}Expand description
Delivery contract requested by an application data message.
Variants§
Implementations§
Source§impl DataReliability
impl DataReliability
pub fn validate(&self) -> Result<(), DataMessageValidationError>
Trait Implementations§
Source§impl Clone for DataReliability
impl Clone for DataReliability
Source§fn clone(&self) -> DataReliability
fn clone(&self) -> DataReliability
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 DataReliability
impl Debug for DataReliability
Source§impl Default for DataReliability
impl Default for DataReliability
Source§fn default() -> DataReliability
fn default() -> DataReliability
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DataReliability
impl<'de> Deserialize<'de> for DataReliability
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<DataReliability, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<DataReliability, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for DataReliability
Source§impl PartialEq for DataReliability
impl PartialEq for DataReliability
Source§impl Serialize for DataReliability
impl Serialize for DataReliability
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
impl StructuralPartialEq for DataReliability
Auto Trait Implementations§
impl Freeze for DataReliability
impl RefUnwindSafe for DataReliability
impl Send for DataReliability
impl Sync for DataReliability
impl Unpin for DataReliability
impl UnsafeUnpin for DataReliability
impl UnwindSafe for DataReliability
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.