#[non_exhaustive]pub struct SourceParallelstore {
pub path: String,
/* private fields */
}Expand description
Parallelstore as the source 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 SourceParallelstore
impl Clone for SourceParallelstore
Source§fn clone(&self) -> SourceParallelstore
fn clone(&self) -> SourceParallelstore
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 SourceParallelstore
impl Debug for SourceParallelstore
Source§impl Default for SourceParallelstore
impl Default for SourceParallelstore
Source§fn default() -> SourceParallelstore
fn default() -> SourceParallelstore
Returns the “default value” for a type. Read more
Source§impl Message for SourceParallelstore
impl Message for SourceParallelstore
Source§impl PartialEq for SourceParallelstore
impl PartialEq for SourceParallelstore
impl StructuralPartialEq for SourceParallelstore
Auto Trait Implementations§
impl Freeze for SourceParallelstore
impl RefUnwindSafe for SourceParallelstore
impl Send for SourceParallelstore
impl Sync for SourceParallelstore
impl Unpin for SourceParallelstore
impl UnwindSafe for SourceParallelstore
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