pub enum PackLogDetails {
FetcherLogDetails(PackFetcherLogDetails),
InvocationLogDetails(PackInvocationLogDetails),
}
Expand description
Details for a pack log.
JSON schema
{
"description": "Details for a pack log.",
"oneOf": [
{
"$ref": "#/components/schemas/PackFetcherLogDetails"
},
{
"$ref": "#/components/schemas/PackInvocationLogDetails"
}
],
"x-schema-name": "PackLogDetails"
}
Variants§
FetcherLogDetails(PackFetcherLogDetails)
InvocationLogDetails(PackInvocationLogDetails)
Trait Implementations§
Source§impl Clone for PackLogDetails
impl Clone for PackLogDetails
Source§fn clone(&self) -> PackLogDetails
fn clone(&self) -> PackLogDetails
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 PackLogDetails
impl Debug for PackLogDetails
Source§impl<'de> Deserialize<'de> for PackLogDetails
impl<'de> Deserialize<'de> for PackLogDetails
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
Source§impl From<&PackLogDetails> for PackLogDetails
impl From<&PackLogDetails> for PackLogDetails
Source§fn from(value: &PackLogDetails) -> Self
fn from(value: &PackLogDetails) -> Self
Converts to this type from the input type.
Source§impl From<PackFetcherLogDetails> for PackLogDetails
impl From<PackFetcherLogDetails> for PackLogDetails
Source§fn from(value: PackFetcherLogDetails) -> Self
fn from(value: PackFetcherLogDetails) -> Self
Converts to this type from the input type.
Source§impl From<PackInvocationLogDetails> for PackLogDetails
impl From<PackInvocationLogDetails> for PackLogDetails
Source§fn from(value: PackInvocationLogDetails) -> Self
fn from(value: PackInvocationLogDetails) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PackLogDetails
impl RefUnwindSafe for PackLogDetails
impl Send for PackLogDetails
impl Sync for PackLogDetails
impl Unpin for PackLogDetails
impl UnwindSafe for PackLogDetails
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