pub struct DdosProtectionEvent {
pub created_at: Option<String>,
pub updated_at: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub customer_id: Option<String>,
pub service_id: Option<String>,
pub started_at: Option<String>,
pub ended_at: Option<String>,
}
Fields§
§created_at: Option<String>
Date and time in ISO 8601 format.
updated_at: Option<String>
Date and time in ISO 8601 format.
id: Option<String>
Unique ID of the event.
name: Option<String>
A human-readable name for the event.
customer_id: Option<String>
Alphanumeric string identifying the customer.
service_id: Option<String>
Alphanumeric string identifying the service.
started_at: Option<String>
Date and time in ISO 8601 format.
ended_at: Option<String>
Date and time in ISO 8601 format.
Implementations§
Source§impl DdosProtectionEvent
impl DdosProtectionEvent
pub fn new() -> DdosProtectionEvent
Trait Implementations§
Source§impl Clone for DdosProtectionEvent
impl Clone for DdosProtectionEvent
Source§fn clone(&self) -> DdosProtectionEvent
fn clone(&self) -> DdosProtectionEvent
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 DdosProtectionEvent
impl Debug for DdosProtectionEvent
Source§impl Default for DdosProtectionEvent
impl Default for DdosProtectionEvent
Source§fn default() -> DdosProtectionEvent
fn default() -> DdosProtectionEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DdosProtectionEvent
impl<'de> Deserialize<'de> for DdosProtectionEvent
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 DdosProtectionEvent
impl PartialEq for DdosProtectionEvent
Source§impl Serialize for DdosProtectionEvent
impl Serialize for DdosProtectionEvent
impl StructuralPartialEq for DdosProtectionEvent
Auto Trait Implementations§
impl Freeze for DdosProtectionEvent
impl RefUnwindSafe for DdosProtectionEvent
impl Send for DdosProtectionEvent
impl Sync for DdosProtectionEvent
impl Unpin for DdosProtectionEvent
impl UnwindSafe for DdosProtectionEvent
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