pub struct TagGet {
pub name: String,
pub description: Option<String>,
pub id: String,
pub count: Option<i32>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
}Fields§
§name: StringThe name of the operation tag.
description: Option<String>A description of the operation tag.
id: StringThe unique identifier of the operation tag.
count: Option<i32>The number of operations associated with this operation tag.
created_at: Option<String>The date and time the operation tag was created.
updated_at: Option<String>The date and time the operation tag was last updated.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TagGet
impl<'de> Deserialize<'de> for TagGet
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
impl StructuralPartialEq for TagGet
Auto Trait Implementations§
impl Freeze for TagGet
impl RefUnwindSafe for TagGet
impl Send for TagGet
impl Sync for TagGet
impl Unpin for TagGet
impl UnsafeUnpin for TagGet
impl UnwindSafe for TagGet
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