pub enum __CfsctlServiceReplyParams<'__ser> {
Show 17 variants
____CfsctlServiceReplyParamsVarlinkService(Reply<'__ser>),
____CfsctlServiceMethodCallVariant0(InitRepositoryReply),
____CfsctlServiceMethodCallVariant1(OpenRepositoryReply),
____CfsctlServiceMethodCallVariant2(FsckReply),
____CfsctlServiceMethodCallVariant3(GcReply),
____CfsctlServiceMethodCallVariant4(ImageObjectsReply),
____CfsctlServiceMethodCallVariant5(ListImageRefsReply),
____CfsctlServiceMethodCallVariant6(MountReply),
____CfsctlServiceMethodCallVariant7(ListImagesReply),
____CfsctlServiceMethodCallVariant8(OciFsckReply),
____CfsctlServiceMethodCallVariant9(OciInspectReply),
____CfsctlServiceMethodCallVariant10(OciComputeIdReply),
____CfsctlServiceMethodCallVariant11(GetInfoReply),
____CfsctlServiceMethodCallVariant12(HasLayerReply),
____CfsctlServiceMethodCallVariant13(PutLayerReply),
____CfsctlServiceMethodCallVariant14(FinalizeImageReply),
____CfsctlServiceReplyParamsUnused(PhantomData<&'__ser ()>),
}Variants§
____CfsctlServiceReplyParamsVarlinkService(Reply<'__ser>)
____CfsctlServiceMethodCallVariant0(InitRepositoryReply)
____CfsctlServiceMethodCallVariant1(OpenRepositoryReply)
____CfsctlServiceMethodCallVariant2(FsckReply)
____CfsctlServiceMethodCallVariant3(GcReply)
____CfsctlServiceMethodCallVariant4(ImageObjectsReply)
____CfsctlServiceMethodCallVariant5(ListImageRefsReply)
____CfsctlServiceMethodCallVariant6(MountReply)
____CfsctlServiceMethodCallVariant7(ListImagesReply)
____CfsctlServiceMethodCallVariant8(OciFsckReply)
____CfsctlServiceMethodCallVariant9(OciInspectReply)
____CfsctlServiceMethodCallVariant10(OciComputeIdReply)
____CfsctlServiceMethodCallVariant11(GetInfoReply)
____CfsctlServiceMethodCallVariant12(HasLayerReply)
____CfsctlServiceMethodCallVariant13(PutLayerReply)
____CfsctlServiceMethodCallVariant14(FinalizeImageReply)
____CfsctlServiceReplyParamsUnused(PhantomData<&'__ser ()>)
Trait Implementations§
Source§impl<'__ser> Debug for __CfsctlServiceReplyParams<'__ser>
impl<'__ser> Debug for __CfsctlServiceReplyParams<'__ser>
Auto Trait Implementations§
impl<'__ser> Freeze for __CfsctlServiceReplyParams<'__ser>
impl<'__ser> RefUnwindSafe for __CfsctlServiceReplyParams<'__ser>
impl<'__ser> Send for __CfsctlServiceReplyParams<'__ser>
impl<'__ser> Sync for __CfsctlServiceReplyParams<'__ser>
impl<'__ser> Unpin for __CfsctlServiceReplyParams<'__ser>
impl<'__ser> UnsafeUnpin for __CfsctlServiceReplyParams<'__ser>
impl<'__ser> UnwindSafe for __CfsctlServiceReplyParams<'__ser>
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<S> CanonJsonSerialize for Swhere
S: Serialize,
impl<S> CanonJsonSerialize for Swhere
S: Serialize,
§fn to_canon_json_writer<W>(&self, writer: W) -> Result<(), Error>where
W: Write,
fn to_canon_json_writer<W>(&self, writer: W) -> Result<(), Error>where
W: Write,
Serialize the given data structure as JSON into the I/O stream.
§fn to_canon_json_vec(&self) -> Result<Vec<u8>, Error>
fn to_canon_json_vec(&self) -> Result<Vec<u8>, Error>
Serialize the given data structure as a JSON byte vector.
§fn to_canon_json_string(&self) -> Result<String, Error>
fn to_canon_json_string(&self) -> Result<String, Error>
Serialize the given data structure as a String.
§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