pub struct CompactOptions {
pub repository: String,
}
Expand description
Options for crate::sync::compact
Fields§
§repository: String
Path to the repository
Example values:
/tmp/foo
user@example.com:/opt/repo
ssh://user@example.com:2323:/opt/repo
Trait Implementations§
Source§impl Clone for CompactOptions
impl Clone for CompactOptions
Source§fn clone(&self) -> CompactOptions
fn clone(&self) -> CompactOptions
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 CompactOptions
impl Debug for CompactOptions
Source§impl<'de> Deserialize<'de> for CompactOptions
impl<'de> Deserialize<'de> for CompactOptions
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 CompactOptions
impl RefUnwindSafe for CompactOptions
impl Send for CompactOptions
impl Sync for CompactOptions
impl Unpin for CompactOptions
impl UnwindSafe for CompactOptions
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