pub struct ListLogsResponseLogsItemLabelsItem {
pub name: Option<String>,
pub value: Option<String>,
}Expand description
A log label
JSON schema
{
"description": "A log label",
"type": "object",
"properties": {
"name": {
"description": "The name of the log label",
"type": "string"
},
"value": {
"description": "The value of the log label",
"type": "string"
}
}
}Fields§
§name: Option<String>The name of the log label
value: Option<String>The value of the log label
Trait Implementations§
Source§impl Clone for ListLogsResponseLogsItemLabelsItem
impl Clone for ListLogsResponseLogsItemLabelsItem
Source§fn clone(&self) -> ListLogsResponseLogsItemLabelsItem
fn clone(&self) -> ListLogsResponseLogsItemLabelsItem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for ListLogsResponseLogsItemLabelsItem
impl<'de> Deserialize<'de> for ListLogsResponseLogsItemLabelsItem
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
Auto Trait Implementations§
impl Freeze for ListLogsResponseLogsItemLabelsItem
impl RefUnwindSafe for ListLogsResponseLogsItemLabelsItem
impl Send for ListLogsResponseLogsItemLabelsItem
impl Sync for ListLogsResponseLogsItemLabelsItem
impl Unpin for ListLogsResponseLogsItemLabelsItem
impl UnsafeUnpin for ListLogsResponseLogsItemLabelsItem
impl UnwindSafe for ListLogsResponseLogsItemLabelsItem
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