pub struct PutRequest {
pub source_filename: Utf8PathBuf,
pub destination_filename: Utf8PathBuf,
pub destination_entity_id: EntityID,
pub transmission_mode: TransmissionMode,
}Expand description
Necessary Configuration for a Put.Request operation
Fields§
§source_filename: Utf8PathBufBytes of the source filename, can be null if length is 0.
destination_filename: Utf8PathBufBytes of the destination filename, can be null if length is 0.
destination_entity_id: EntityIDDestination ID of the Request
transmission_mode: TransmissionModeWhether to send in acknowledged or unacknowledged mode
Trait Implementations§
Source§impl Clone for PutRequest
impl Clone for PutRequest
Source§fn clone(&self) -> PutRequest
fn clone(&self) -> PutRequest
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 PutRequest
impl Debug for PutRequest
impl Eq for PutRequest
Source§impl PartialEq for PutRequest
impl PartialEq for PutRequest
impl StructuralPartialEq for PutRequest
Auto Trait Implementations§
impl Freeze for PutRequest
impl RefUnwindSafe for PutRequest
impl Send for PutRequest
impl Sync for PutRequest
impl Unpin for PutRequest
impl UnsafeUnpin for PutRequest
impl UnwindSafe for PutRequest
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