pub struct PackInvocationLogDetails {
pub completion_json: Option<String>,
pub continuation_json: Option<String>,
pub deleted_item_ids_json: Option<String>,
pub permissions_context_json: Option<String>,
pub result: Option<PackInvocationLogDetailsResult>,
pub result_detail: Option<String>,
pub type_: PackInvocationLogDetailsType,
}
Expand description
Details for pack invocation logs
JSON schema
{
"description": "Details for pack invocation logs",
"type": "object",
"required": [
"type"
],
"properties": {
"completionJson": {
"description": "Only used by sync invocations.",
"type": "string"
},
"continuationJson": {
"description": "Only used by sync invocations.",
"type": "string"
},
"deletedItemIdsJson": {
"description": "Only used by sync invocations.",
"type": "string"
},
"permissionsContextJson": {
"description": "Only used by sync invocations.",
"type": "string"
},
"result": {
"type": "object",
"required": [
"boolVal",
"dateVal",
"doubleVal",
"int64Val",
"objectVal",
"stringVal"
],
"properties": {
"boolVal": {
"type": "boolean"
},
"dateVal": {
"type": "number"
},
"doubleVal": {
"type": "number"
},
"int64Val": {
"type": "number"
},
"objectVal": {
"type": "string"
},
"stringVal": {
"type": "string"
}
},
"additionalProperties": false
},
"resultDetail": {
"description": "Supplementary information about the result.",
"type": "string"
},
"type": {
"type": "string",
"enum": [
"invocation"
],
"x-tsType": "PackLogType.Invocation"
}
},
"additionalProperties": false,
"x-schema-name": "PackInvocationLogDetails"
}
Fields§
§completion_json: Option<String>
Only used by sync invocations.
continuation_json: Option<String>
Only used by sync invocations.
deleted_item_ids_json: Option<String>
Only used by sync invocations.
permissions_context_json: Option<String>
Only used by sync invocations.
result: Option<PackInvocationLogDetailsResult>
§result_detail: Option<String>
Supplementary information about the result.
type_: PackInvocationLogDetailsType
Trait Implementations§
Source§impl Clone for PackInvocationLogDetails
impl Clone for PackInvocationLogDetails
Source§fn clone(&self) -> PackInvocationLogDetails
fn clone(&self) -> PackInvocationLogDetails
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 PackInvocationLogDetails
impl Debug for PackInvocationLogDetails
Source§impl<'de> Deserialize<'de> for PackInvocationLogDetails
impl<'de> Deserialize<'de> for PackInvocationLogDetails
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<&PackInvocationLogDetails> for PackInvocationLogDetails
impl From<&PackInvocationLogDetails> for PackInvocationLogDetails
Source§fn from(value: &PackInvocationLogDetails) -> Self
fn from(value: &PackInvocationLogDetails) -> 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 PackInvocationLogDetails
impl RefUnwindSafe for PackInvocationLogDetails
impl Send for PackInvocationLogDetails
impl Sync for PackInvocationLogDetails
impl Unpin for PackInvocationLogDetails
impl UnwindSafe for PackInvocationLogDetails
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