pub enum FileWriteAckMethod {
Stream {
file_start_position: i32,
},
Record {
file_start_record: i32,
},
}Expand description
Write-ACK access method.
Variants§
Trait Implementations§
Source§impl Clone for FileWriteAckMethod
impl Clone for FileWriteAckMethod
Source§fn clone(&self) -> FileWriteAckMethod
fn clone(&self) -> FileWriteAckMethod
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 Debug for FileWriteAckMethod
impl Debug for FileWriteAckMethod
Source§impl PartialEq for FileWriteAckMethod
impl PartialEq for FileWriteAckMethod
impl Eq for FileWriteAckMethod
impl StructuralPartialEq for FileWriteAckMethod
Auto Trait Implementations§
impl Freeze for FileWriteAckMethod
impl RefUnwindSafe for FileWriteAckMethod
impl Send for FileWriteAckMethod
impl Sync for FileWriteAckMethod
impl Unpin for FileWriteAckMethod
impl UnsafeUnpin for FileWriteAckMethod
impl UnwindSafe for FileWriteAckMethod
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