pub struct PackFetcherLogDetails {
pub request: String,
pub response: Option<String>,
pub type_: PackFetcherLogDetailsType,
}
Expand description
Details for pack fetcher logs
JSON schema
{
"description": "Details for pack fetcher logs",
"type": "object",
"required": [
"request",
"type"
],
"properties": {
"request": {
"type": "string"
},
"response": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"fetcher"
],
"x-tsType": "PackLogType.Fetcher"
}
},
"additionalProperties": false,
"x-schema-name": "PackFetcherLogDetails"
}
Fields§
§request: String
§response: Option<String>
§type_: PackFetcherLogDetailsType
Trait Implementations§
Source§impl Clone for PackFetcherLogDetails
impl Clone for PackFetcherLogDetails
Source§fn clone(&self) -> PackFetcherLogDetails
fn clone(&self) -> PackFetcherLogDetails
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 PackFetcherLogDetails
impl Debug for PackFetcherLogDetails
Source§impl<'de> Deserialize<'de> for PackFetcherLogDetails
impl<'de> Deserialize<'de> for PackFetcherLogDetails
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<&PackFetcherLogDetails> for PackFetcherLogDetails
impl From<&PackFetcherLogDetails> for PackFetcherLogDetails
Source§fn from(value: &PackFetcherLogDetails) -> Self
fn from(value: &PackFetcherLogDetails) -> 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.
Auto Trait Implementations§
impl Freeze for PackFetcherLogDetails
impl RefUnwindSafe for PackFetcherLogDetails
impl Send for PackFetcherLogDetails
impl Sync for PackFetcherLogDetails
impl Unpin for PackFetcherLogDetails
impl UnwindSafe for PackFetcherLogDetails
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