pub struct CreateFileService {
pub uri: String,
pub file_type: String,
pub err_on_conflict: Option<bool>,
pub metadata: Option<HashMap<String, String>>,
}Expand description
Create file service
Fields§
§uri: String§file_type: String§err_on_conflict: Option<bool>§metadata: Option<HashMap<String, String>>Trait Implementations§
Source§impl Clone for CreateFileService
impl Clone for CreateFileService
Source§fn clone(&self) -> CreateFileService
fn clone(&self) -> CreateFileService
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 CreateFileService
impl Debug for CreateFileService
Source§impl<'de> Deserialize<'de> for CreateFileService
impl<'de> Deserialize<'de> for CreateFileService
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CreateFileService
impl RefUnwindSafe for CreateFileService
impl Send for CreateFileService
impl Sync for CreateFileService
impl Unpin for CreateFileService
impl UnsafeUnpin for CreateFileService
impl UnwindSafe for CreateFileService
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