pub struct GroupedPackAuthLog {
pub auth_log: PackAuthLog,
pub related_logs: Vec<PackLog>,
pub type_: GroupedPackAuthLogType,
}
Expand description
Grouped logs of the Pack’s auth requests.
JSON schema
{
"description": "Grouped logs of the Pack's auth requests.",
"type": "object",
"required": [
"authLog",
"relatedLogs",
"type"
],
"properties": {
"authLog": {
"$ref": "#/components/schemas/PackAuthLog"
},
"relatedLogs": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PackLog"
}
},
"type": {
"type": "string",
"enum": [
"auth"
],
"x-tsType": "PackLogType.Auth"
}
},
"additionalProperties": false,
"x-schema-name": "GroupedPackAuthLog"
}
Fields§
§auth_log: PackAuthLog
§type_: GroupedPackAuthLogType
Trait Implementations§
Source§impl Clone for GroupedPackAuthLog
impl Clone for GroupedPackAuthLog
Source§fn clone(&self) -> GroupedPackAuthLog
fn clone(&self) -> GroupedPackAuthLog
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 GroupedPackAuthLog
impl Debug for GroupedPackAuthLog
Source§impl<'de> Deserialize<'de> for GroupedPackAuthLog
impl<'de> Deserialize<'de> for GroupedPackAuthLog
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<&GroupedPackAuthLog> for GroupedPackAuthLog
impl From<&GroupedPackAuthLog> for GroupedPackAuthLog
Source§fn from(value: &GroupedPackAuthLog) -> Self
fn from(value: &GroupedPackAuthLog) -> 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.
Auto Trait Implementations§
impl Freeze for GroupedPackAuthLog
impl RefUnwindSafe for GroupedPackAuthLog
impl Send for GroupedPackAuthLog
impl Sync for GroupedPackAuthLog
impl Unpin for GroupedPackAuthLog
impl UnwindSafe for GroupedPackAuthLog
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