pub struct GroupedPackInvocationLog {
pub invocation_log: PackInvocationLog,
pub related_logs: Vec<PackLog>,
pub type_: GroupedPackInvocationLogType,
}
Expand description
Grouped logs of the invocations of the Pack.
JSON schema
{
"description": "Grouped logs of the invocations of the Pack.",
"type": "object",
"required": [
"invocationLog",
"relatedLogs",
"type"
],
"properties": {
"invocationLog": {
"$ref": "#/components/schemas/PackInvocationLog"
},
"relatedLogs": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PackLog"
}
},
"type": {
"type": "string",
"enum": [
"invocation"
],
"x-tsType": "PackLogType.Invocation"
}
},
"additionalProperties": false,
"x-schema-name": "GroupedPackInvocationLog"
}
Fields§
§invocation_log: PackInvocationLog
§type_: GroupedPackInvocationLogType
Trait Implementations§
Source§impl Clone for GroupedPackInvocationLog
impl Clone for GroupedPackInvocationLog
Source§fn clone(&self) -> GroupedPackInvocationLog
fn clone(&self) -> GroupedPackInvocationLog
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 GroupedPackInvocationLog
impl Debug for GroupedPackInvocationLog
Source§impl<'de> Deserialize<'de> for GroupedPackInvocationLog
impl<'de> Deserialize<'de> for GroupedPackInvocationLog
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<&GroupedPackInvocationLog> for GroupedPackInvocationLog
impl From<&GroupedPackInvocationLog> for GroupedPackInvocationLog
Source§fn from(value: &GroupedPackInvocationLog) -> Self
fn from(value: &GroupedPackInvocationLog) -> 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 GroupedPackInvocationLog
impl RefUnwindSafe for GroupedPackInvocationLog
impl Send for GroupedPackInvocationLog
impl Sync for GroupedPackInvocationLog
impl Unpin for GroupedPackInvocationLog
impl UnwindSafe for GroupedPackInvocationLog
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