pub struct DiscoveredOperationGet {
pub method: Method,
pub domain: String,
pub path: String,
pub status: Option<Status>,
pub updated_at: Option<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.
status: Option<Status>The current status of the operation.
updated_at: Option<String>The 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 DiscoveredOperationGet
impl Clone for DiscoveredOperationGet
Source§fn clone(&self) -> DiscoveredOperationGet
fn clone(&self) -> DiscoveredOperationGet
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 DiscoveredOperationGet
impl Debug for DiscoveredOperationGet
Source§impl Default for DiscoveredOperationGet
impl Default for DiscoveredOperationGet
Source§fn default() -> DiscoveredOperationGet
fn default() -> DiscoveredOperationGet
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DiscoveredOperationGet
impl<'de> Deserialize<'de> for DiscoveredOperationGet
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 DiscoveredOperationGet
impl PartialEq for DiscoveredOperationGet
Source§impl Serialize for DiscoveredOperationGet
impl Serialize for DiscoveredOperationGet
impl StructuralPartialEq for DiscoveredOperationGet
Auto Trait Implementations§
impl Freeze for DiscoveredOperationGet
impl RefUnwindSafe for DiscoveredOperationGet
impl Send for DiscoveredOperationGet
impl Sync for DiscoveredOperationGet
impl Unpin for DiscoveredOperationGet
impl UnsafeUnpin for DiscoveredOperationGet
impl UnwindSafe for DiscoveredOperationGet
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