pub struct SyncRequest {
pub source: SyncSource,
pub ignore: Vec<String>,
pub no_save: bool,
pub snapshot: bool,
pub use_cache: bool,
pub force: bool,
}Expand description
Request to sync a codebase (local or remote).
Fields§
§source: SyncSourceThe source to sync from.
ignore: Vec<String>Repositories to ignore when syncing an org.
no_save: boolWhether to skip saving to .self folder.
snapshot: boolWhether to create a timestamped snapshot.
use_cache: boolClone to global cache directory instead of current directory.
force: boolWhether to force a fresh sync even if .self exists.
Implementations§
Source§impl SyncRequest
impl SyncRequest
Sourcepub fn github_org(org: impl Into<String>) -> Self
pub fn github_org(org: impl Into<String>) -> Self
Create a sync request for a GitHub organization.
Sourcepub fn github_repo(owner: impl Into<String>, repo: impl Into<String>) -> Self
pub fn github_repo(owner: impl Into<String>, repo: impl Into<String>) -> Self
Create a sync request for a GitHub repository.
Sourcepub fn with_ignore(
self,
ignore: impl IntoIterator<Item = impl Into<String>>,
) -> Self
pub fn with_ignore( self, ignore: impl IntoIterator<Item = impl Into<String>>, ) -> Self
Add repositories to ignore.
Sourcepub fn without_save(self) -> Self
pub fn without_save(self) -> Self
Skip saving to .self folder.
Sourcepub fn with_snapshot(self) -> Self
pub fn with_snapshot(self) -> Self
Create a snapshot after sync.
Trait Implementations§
Source§impl Clone for SyncRequest
impl Clone for SyncRequest
Source§fn clone(&self) -> SyncRequest
fn clone(&self) -> SyncRequest
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 SyncRequest
impl Debug for SyncRequest
Source§impl<'de> Deserialize<'de> for SyncRequest
impl<'de> Deserialize<'de> for SyncRequest
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 SyncRequest
impl RefUnwindSafe for SyncRequest
impl Send for SyncRequest
impl Sync for SyncRequest
impl Unpin for SyncRequest
impl UnsafeUnpin for SyncRequest
impl UnwindSafe for SyncRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> FromResponse for Twhere
T: DeserializeOwned,
impl<T> FromResponse for Twhere
T: DeserializeOwned,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more