pub struct RepoArgs<'a> {Show 13 fields
pub spec_version: u8,
pub tags: Option<WIPOffset<Vector<'a, ForwardsUOffset<Ref<'a>>>>>,
pub branches: Option<WIPOffset<Vector<'a, ForwardsUOffset<Ref<'a>>>>>,
pub deleted_tags: Option<WIPOffset<Vector<'a, ForwardsUOffset<&'a str>>>>,
pub snapshots: Option<WIPOffset<Vector<'a, ForwardsUOffset<SnapshotInfo<'a>>>>>,
pub status: Option<WIPOffset<RepoStatus<'a>>>,
pub metadata: Option<WIPOffset<Vector<'a, ForwardsUOffset<MetadataItem<'a>>>>>,
pub latest_updates: Option<WIPOffset<Vector<'a, ForwardsUOffset<Update<'a>>>>>,
pub repo_before_updates: Option<WIPOffset<&'a str>>,
pub config: Option<WIPOffset<Vector<'a, u8>>>,
pub enabled_feature_flags: Option<WIPOffset<Vector<'a, u16>>>,
pub disabled_feature_flags: Option<WIPOffset<Vector<'a, u16>>>,
pub extra: Option<WIPOffset<Vector<'a, u8>>>,
}Fields§
§spec_version: u8§branches: Option<WIPOffset<Vector<'a, ForwardsUOffset<Ref<'a>>>>>§snapshots: Option<WIPOffset<Vector<'a, ForwardsUOffset<SnapshotInfo<'a>>>>>§status: Option<WIPOffset<RepoStatus<'a>>>§metadata: Option<WIPOffset<Vector<'a, ForwardsUOffset<MetadataItem<'a>>>>>§latest_updates: Option<WIPOffset<Vector<'a, ForwardsUOffset<Update<'a>>>>>§repo_before_updates: Option<WIPOffset<&'a str>>§config: Option<WIPOffset<Vector<'a, u8>>>§enabled_feature_flags: Option<WIPOffset<Vector<'a, u16>>>§disabled_feature_flags: Option<WIPOffset<Vector<'a, u16>>>§extra: Option<WIPOffset<Vector<'a, u8>>>Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for RepoArgs<'a>
impl<'a> RefUnwindSafe for RepoArgs<'a>
impl<'a> Send for RepoArgs<'a>
impl<'a> Sync for RepoArgs<'a>
impl<'a> Unpin for RepoArgs<'a>
impl<'a> UnsafeUnpin for RepoArgs<'a>
impl<'a> UnwindSafe for RepoArgs<'a>
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> 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