pub struct ArchiveWorkflowService {
pub src: Vec<String>,
pub dst: String,
pub preferred_node_id: Option<String>,
pub encoding: Option<String>,
pub password: Option<String>,
pub file_mask: Option<Vec<String>>,
}Expand description
Archive workflow service
Fields§
§src: Vec<String>§dst: String§preferred_node_id: Option<String>§encoding: Option<String>§password: Option<String>§file_mask: Option<Vec<String>>Trait Implementations§
Source§impl Clone for ArchiveWorkflowService
impl Clone for ArchiveWorkflowService
Source§fn clone(&self) -> ArchiveWorkflowService
fn clone(&self) -> ArchiveWorkflowService
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 ArchiveWorkflowService
impl Debug for ArchiveWorkflowService
Source§impl<'de> Deserialize<'de> for ArchiveWorkflowService
impl<'de> Deserialize<'de> for ArchiveWorkflowService
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 ArchiveWorkflowService
impl RefUnwindSafe for ArchiveWorkflowService
impl Send for ArchiveWorkflowService
impl Sync for ArchiveWorkflowService
impl Unpin for ArchiveWorkflowService
impl UnsafeUnpin for ArchiveWorkflowService
impl UnwindSafe for ArchiveWorkflowService
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