pub struct FileStagingCommand {
pub stage: ObjectName,
pub pattern: Option<String>,
}Expand description
A command to stage files to a named stage.
Fields§
§stage: ObjectNameThe stage to which files are being staged.
pattern: Option<String>Optional file matching PATTERN expression.
Trait Implementations§
Source§impl Clone for FileStagingCommand
impl Clone for FileStagingCommand
Source§fn clone(&self) -> FileStagingCommand
fn clone(&self) -> FileStagingCommand
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 FileStagingCommand
impl Debug for FileStagingCommand
Source§impl Display for FileStagingCommand
impl Display for FileStagingCommand
Source§impl Hash for FileStagingCommand
impl Hash for FileStagingCommand
Source§impl Ord for FileStagingCommand
impl Ord for FileStagingCommand
Source§fn cmp(&self, other: &FileStagingCommand) -> Ordering
fn cmp(&self, other: &FileStagingCommand) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for FileStagingCommand
impl PartialEq for FileStagingCommand
Source§impl PartialOrd for FileStagingCommand
impl PartialOrd for FileStagingCommand
Source§impl Visit for FileStagingCommand
impl Visit for FileStagingCommand
Source§impl VisitMut for FileStagingCommand
impl VisitMut for FileStagingCommand
Source§fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
Mutably visit this node with the provided
VisitorMut. Read moreimpl Eq for FileStagingCommand
impl StructuralPartialEq for FileStagingCommand
Auto Trait Implementations§
impl Freeze for FileStagingCommand
impl RefUnwindSafe for FileStagingCommand
impl Send for FileStagingCommand
impl Sync for FileStagingCommand
impl Unpin for FileStagingCommand
impl UnsafeUnpin for FileStagingCommand
impl UnwindSafe for FileStagingCommand
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