pub enum __CfsctlServiceUserMethods<'__de> {
Show 17 variants
____CfsctlServiceUserMethodsUnused(PhantomData<&'__de ()>),
InitRepository {
path: String,
algorithm: Option<String>,
insecure: Option<bool>,
},
OpenRepository {
path: Option<String>,
user: Option<bool>,
system: Option<bool>,
},
CloseRepository {
handle: u64,
},
Fsck {
handle: u64,
metadata_only: Option<bool>,
},
Gc {
handle: u64,
dry_run: bool,
roots: Vec<String>,
},
ImageObjects {
handle: u64,
name: String,
},
Mount {
handle: u64,
name: String,
options: MountParams,
},
ListImages {
handle: u64,
filter: Option<String>,
},
Check {
handle: u64,
image: Option<String>,
},
Inspect {
handle: u64,
image: String,
},
Tag {
handle: u64,
manifest_digest: String,
name: String,
},
Untag {
handle: u64,
name: String,
},
ComputeId {
handle: u64,
image: String,
verity: Option<String>,
bootable: bool,
},
Pull {
handle: u64,
image: String,
name: Option<String>,
local_fetch: String,
storage_root: Option<String>,
bootable: bool,
},
OciMount {
handle: u64,
image: String,
bootable: bool,
options: MountParams,
},
____CfsctlServiceUserMethodsUnknown,
}Variants§
____CfsctlServiceUserMethodsUnused(PhantomData<&'__de ()>)
InitRepository
OpenRepository
CloseRepository
Fsck
Gc
ImageObjects
Mount
ListImages
Check
Inspect
Tag
Untag
ComputeId
Pull
Fields
OciMount
____CfsctlServiceUserMethodsUnknown
Trait Implementations§
Source§impl<'__de> Debug for __CfsctlServiceUserMethods<'__de>
impl<'__de> Debug for __CfsctlServiceUserMethods<'__de>
Source§impl<'de, '__de> Deserialize<'de> for __CfsctlServiceUserMethods<'__de>
impl<'de, '__de> Deserialize<'de> for __CfsctlServiceUserMethods<'__de>
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<'__de> Freeze for __CfsctlServiceUserMethods<'__de>
impl<'__de> RefUnwindSafe for __CfsctlServiceUserMethods<'__de>
impl<'__de> Send for __CfsctlServiceUserMethods<'__de>
impl<'__de> Sync for __CfsctlServiceUserMethods<'__de>
impl<'__de> Unpin for __CfsctlServiceUserMethods<'__de>
impl<'__de> UnsafeUnpin for __CfsctlServiceUserMethods<'__de>
impl<'__de> UnwindSafe for __CfsctlServiceUserMethods<'__de>
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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