pub struct ChannelSeq {
pub channel_sequence: u16,
pub outstanding_request_count: u32,
pub outstanding_pre_request_count: u32,
}Expand description
Per-open channel-sequence counters ([MS-SMB2] §3.3.5.2.10).
Fields§
§channel_sequence: u16Open.ChannelSequence.
outstanding_request_count: u32Open.OutstandingRequestCount.
outstanding_pre_request_count: u32Open.OutstandingPreRequestCount.
Trait Implementations§
Source§impl Clone for ChannelSeq
impl Clone for ChannelSeq
Source§fn clone(&self) -> ChannelSeq
fn clone(&self) -> ChannelSeq
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 moreimpl Copy for ChannelSeq
Source§impl Default for ChannelSeq
impl Default for ChannelSeq
Source§fn default() -> ChannelSeq
fn default() -> ChannelSeq
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ChannelSeq
impl RefUnwindSafe for ChannelSeq
impl Send for ChannelSeq
impl Sync for ChannelSeq
impl Unpin for ChannelSeq
impl UnsafeUnpin for ChannelSeq
impl UnwindSafe for ChannelSeq
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