#[non_exhaustive]pub enum UploadModeOverride {
Auto,
Server,
}Expand description
Upload mode preference for MarpleDB::push_file.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for UploadModeOverride
impl Clone for UploadModeOverride
Source§fn clone(&self) -> UploadModeOverride
fn clone(&self) -> UploadModeOverride
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 UploadModeOverride
impl Debug for UploadModeOverride
impl Copy for UploadModeOverride
Auto Trait Implementations§
impl Freeze for UploadModeOverride
impl RefUnwindSafe for UploadModeOverride
impl Send for UploadModeOverride
impl Sync for UploadModeOverride
impl Unpin for UploadModeOverride
impl UnsafeUnpin for UploadModeOverride
impl UnwindSafe for UploadModeOverride
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