pub struct FileReqValue<A> {
pub transfer_id: u32,
pub total_len: u32,
/* private fields */
}Expand description
Value type used to encode a FileReq message for a specific atlas marker type A.
Fields§
§transfer_id: u32§total_len: u32Implementations§
Trait Implementations§
Source§impl<A: Clone> Clone for FileReqValue<A>
impl<A: Clone> Clone for FileReqValue<A>
Source§fn clone(&self) -> FileReqValue<A>
fn clone(&self) -> FileReqValue<A>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<A: Debug> Debug for FileReqValue<A>
impl<A: Debug> Debug for FileReqValue<A>
Source§impl<A> EncodeCapnp<<A as Atlas>::FileReq> for FileReqValue<A>where
A: Atlas,
impl<A> EncodeCapnp<<A as Atlas>::FileReq> for FileReqValue<A>where
A: Atlas,
Source§impl<A: PartialEq> PartialEq for FileReqValue<A>
impl<A: PartialEq> PartialEq for FileReqValue<A>
impl<A: Copy> Copy for FileReqValue<A>
impl<A: Eq> Eq for FileReqValue<A>
impl<A> StructuralPartialEq for FileReqValue<A>
Auto Trait Implementations§
impl<A> Freeze for FileReqValue<A>
impl<A> RefUnwindSafe for FileReqValue<A>where
A: RefUnwindSafe,
impl<A> Send for FileReqValue<A>where
A: Send,
impl<A> Sync for FileReqValue<A>where
A: Sync,
impl<A> Unpin for FileReqValue<A>where
A: Unpin,
impl<A> UnsafeUnpin for FileReqValue<A>
impl<A> UnwindSafe for FileReqValue<A>where
A: UnwindSafe,
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