pub struct PushOptions {
pub since: Option<NaiveDate>,
pub dry_run: bool,
pub sync_blobs: bool,
}Expand description
Options for push operation.
Fields§
§since: Option<NaiveDate>Only push data since this date.
dry_run: boolShow what would be pushed without actually pushing.
sync_blobs: boolSync blob files (not just metadata).
Trait Implementations§
Source§impl Debug for PushOptions
impl Debug for PushOptions
Source§impl Default for PushOptions
impl Default for PushOptions
Source§fn default() -> PushOptions
fn default() -> PushOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PushOptions
impl RefUnwindSafe for PushOptions
impl Send for PushOptions
impl Sync for PushOptions
impl Unpin for PushOptions
impl UnwindSafe for PushOptions
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