pub struct OperationGet {
pub method: Method,
pub domain: String,
pub path: String,
pub description: Option<String>,
pub tag_ids: Option<Vec<String>>,
pub id: String,
pub created_at: Option<String>,
pub updated_at: String,
pub last_seen_at: Option<String>,
}Fields§
§method: MethodThe HTTP method for the operation.
domain: StringThe domain for the operation.
path: StringThe path for the operation, which may include path parameters.
description: Option<String>A description of what the operation does.
tag_ids: Option<Vec<String>>An array of operation tag IDs associated with this operation.
id: StringThe unique identifier of the operation.
created_at: Option<String>The timestamp when the operation was created.
updated_at: StringThe timestamp when the operation was last updated.
last_seen_at: Option<String>The timestamp when the operation was last seen in traffic.
Implementations§
Trait Implementations§
Source§impl Clone for OperationGet
impl Clone for OperationGet
Source§fn clone(&self) -> OperationGet
fn clone(&self) -> OperationGet
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 OperationGet
impl Debug for OperationGet
Source§impl Default for OperationGet
impl Default for OperationGet
Source§fn default() -> OperationGet
fn default() -> OperationGet
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OperationGet
impl<'de> Deserialize<'de> for OperationGet
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 PartialEq for OperationGet
impl PartialEq for OperationGet
Source§impl Serialize for OperationGet
impl Serialize for OperationGet
impl StructuralPartialEq for OperationGet
Auto Trait Implementations§
impl Freeze for OperationGet
impl RefUnwindSafe for OperationGet
impl Send for OperationGet
impl Sync for OperationGet
impl Unpin for OperationGet
impl UnsafeUnpin for OperationGet
impl UnwindSafe for OperationGet
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