pub struct StaticPutRequestFields {
pub destination_id: UnsignedByteField,
pub source_file_buf: [u8; 255],
pub source_file_len: usize,
pub dest_file_buf: [u8; 255],
pub dest_file_len: usize,
pub trans_mode: Option<TransmissionMode>,
pub closure_requested: Option<bool>,
pub seg_ctrl: Option<SegmentationControl>,
}
Available on crate feature
alloc
only.Fields§
§destination_id: UnsignedByteField
§source_file_buf: [u8; 255]
Static buffer to store source file path.
source_file_len: usize
Current source path length.
dest_file_buf: [u8; 255]
Static buffer to store dest file path.
dest_file_len: usize
Current destination path length.
trans_mode: Option<TransmissionMode>
§closure_requested: Option<bool>
§seg_ctrl: Option<SegmentationControl>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StaticPutRequestFields
impl RefUnwindSafe for StaticPutRequestFields
impl Send for StaticPutRequestFields
impl Sync for StaticPutRequestFields
impl Unpin for StaticPutRequestFields
impl UnwindSafe for StaticPutRequestFields
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