#[non_exhaustive]pub struct DestinationParallelstore {
pub path: String,
/* private fields */
}Expand description
Parallelstore as the destination of a data transfer.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.path: StringOptional. Root directory path to the Paralellstore filesystem, starting
with /. Defaults to / if unset.
Implementations§
Trait Implementations§
Source§impl Clone for DestinationParallelstore
impl Clone for DestinationParallelstore
Source§fn clone(&self) -> DestinationParallelstore
fn clone(&self) -> DestinationParallelstore
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 DestinationParallelstore
impl Debug for DestinationParallelstore
Source§impl Default for DestinationParallelstore
impl Default for DestinationParallelstore
Source§fn default() -> DestinationParallelstore
fn default() -> DestinationParallelstore
Returns the “default value” for a type. Read more
Source§impl Message for DestinationParallelstore
impl Message for DestinationParallelstore
Source§impl PartialEq for DestinationParallelstore
impl PartialEq for DestinationParallelstore
impl StructuralPartialEq for DestinationParallelstore
Auto Trait Implementations§
impl Freeze for DestinationParallelstore
impl RefUnwindSafe for DestinationParallelstore
impl Send for DestinationParallelstore
impl Sync for DestinationParallelstore
impl Unpin for DestinationParallelstore
impl UnwindSafe for DestinationParallelstore
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