pub struct DetectorInfo {
pub name: String,
pub version: Option<String>,
pub tier: Option<String>,
pub status: Option<String>,
}Expand description
Single detector entry returned by GET /v1/detectors.
Fields§
§name: String§version: Option<String>§tier: Option<String>§status: Option<String>Trait Implementations§
Source§impl Clone for DetectorInfo
impl Clone for DetectorInfo
Source§fn clone(&self) -> DetectorInfo
fn clone(&self) -> DetectorInfo
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 DetectorInfo
impl Debug for DetectorInfo
Source§impl<'de> Deserialize<'de> for DetectorInfo
impl<'de> Deserialize<'de> for DetectorInfo
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 DetectorInfo
impl RefUnwindSafe for DetectorInfo
impl Send for DetectorInfo
impl Sync for DetectorInfo
impl Unpin for DetectorInfo
impl UnsafeUnpin for DetectorInfo
impl UnwindSafe for DetectorInfo
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