pub struct MoveFileService {
pub uris: Vec<String>,
pub dst: String,
pub copy: Option<bool>,
}Expand description
Move file service
Fields§
§uris: Vec<String>§dst: String§copy: Option<bool>Trait Implementations§
Source§impl Clone for MoveFileService
impl Clone for MoveFileService
Source§fn clone(&self) -> MoveFileService
fn clone(&self) -> MoveFileService
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 MoveFileService
impl Debug for MoveFileService
Source§impl<'de> Deserialize<'de> for MoveFileService
impl<'de> Deserialize<'de> for MoveFileService
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 MoveFileService
impl RefUnwindSafe for MoveFileService
impl Send for MoveFileService
impl Sync for MoveFileService
impl Unpin for MoveFileService
impl UnsafeUnpin for MoveFileService
impl UnwindSafe for MoveFileService
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