pub enum GroupedPackLog {
InvocationLog(GroupedPackInvocationLog),
AuthLog(GroupedPackAuthLog),
}
Expand description
A record of grouped Pack log.
JSON schema
{
"description": "A record of grouped Pack log.",
"oneOf": [
{
"$ref": "#/components/schemas/GroupedPackInvocationLog"
},
{
"$ref": "#/components/schemas/GroupedPackAuthLog"
}
],
"x-schema-name": "GroupedPackLog"
}
Variants§
InvocationLog(GroupedPackInvocationLog)
AuthLog(GroupedPackAuthLog)
Trait Implementations§
Source§impl Clone for GroupedPackLog
impl Clone for GroupedPackLog
Source§fn clone(&self) -> GroupedPackLog
fn clone(&self) -> GroupedPackLog
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 GroupedPackLog
impl Debug for GroupedPackLog
Source§impl<'de> Deserialize<'de> for GroupedPackLog
impl<'de> Deserialize<'de> for GroupedPackLog
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<&GroupedPackLog> for GroupedPackLog
impl From<&GroupedPackLog> for GroupedPackLog
Source§fn from(value: &GroupedPackLog) -> Self
fn from(value: &GroupedPackLog) -> Self
Converts to this type from the input type.
Source§impl From<GroupedPackAuthLog> for GroupedPackLog
impl From<GroupedPackAuthLog> for GroupedPackLog
Source§fn from(value: GroupedPackAuthLog) -> Self
fn from(value: GroupedPackAuthLog) -> Self
Converts to this type from the input type.
Source§impl From<GroupedPackInvocationLog> for GroupedPackLog
impl From<GroupedPackInvocationLog> for GroupedPackLog
Source§fn from(value: GroupedPackInvocationLog) -> Self
fn from(value: GroupedPackInvocationLog) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GroupedPackLog
impl RefUnwindSafe for GroupedPackLog
impl Send for GroupedPackLog
impl Sync for GroupedPackLog
impl Unpin for GroupedPackLog
impl UnwindSafe for GroupedPackLog
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