pub struct ReliableBody {
pub seqnum: u16,
pub inner: InnerBody,
}
Fields§
§seqnum: u16
§inner: InnerBody
Trait Implementations§
Source§impl Clone for ReliableBody
impl Clone for ReliableBody
Source§fn clone(&self) -> ReliableBody
fn clone(&self) -> ReliableBody
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ReliableBody
impl Debug for ReliableBody
Source§impl Deserialize for ReliableBody
impl Deserialize for ReliableBody
Source§type Output = ReliableBody
type Output = ReliableBody
Output should be Self, except for wrapper types.
fn deserialize(deser: &mut Deserializer<'_>) -> DeserializeResult<Self>
Source§impl PartialEq for ReliableBody
impl PartialEq for ReliableBody
Source§impl Serialize for ReliableBody
impl Serialize for ReliableBody
type Input = ReliableBody
fn serialize<S: Serializer>(value: &Self::Input, ser: &mut S) -> SerializeResult
impl StructuralPartialEq for ReliableBody
Auto Trait Implementations§
impl Freeze for ReliableBody
impl RefUnwindSafe for ReliableBody
impl Send for ReliableBody
impl Sync for ReliableBody
impl Unpin for ReliableBody
impl UnwindSafe for ReliableBody
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