pub struct TriggersCount {
pub primary_schedule: Option<Box<TriggersCountPrimarySchedule>>,
pub schedule_count: Option<f64>,
pub http_routes_count: Option<f64>,
pub webhook_count: Option<f64>,
pub email_count: Option<f64>,
pub websocket_count: Option<f64>,
pub postgres_count: Option<f64>,
pub kafka_count: Option<f64>,
pub nats_count: Option<f64>,
pub mqtt_count: Option<f64>,
pub gcp_count: Option<f64>,
pub sqs_count: Option<f64>,
}
Fields§
§primary_schedule: Option<Box<TriggersCountPrimarySchedule>>
§schedule_count: Option<f64>
§http_routes_count: Option<f64>
§webhook_count: Option<f64>
§email_count: Option<f64>
§websocket_count: Option<f64>
§postgres_count: Option<f64>
§kafka_count: Option<f64>
§nats_count: Option<f64>
§mqtt_count: Option<f64>
§gcp_count: Option<f64>
§sqs_count: Option<f64>
Implementations§
Source§impl TriggersCount
impl TriggersCount
pub fn new() -> TriggersCount
Trait Implementations§
Source§impl Clone for TriggersCount
impl Clone for TriggersCount
Source§fn clone(&self) -> TriggersCount
fn clone(&self) -> TriggersCount
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 TriggersCount
impl Debug for TriggersCount
Source§impl Default for TriggersCount
impl Default for TriggersCount
Source§fn default() -> TriggersCount
fn default() -> TriggersCount
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TriggersCount
impl<'de> Deserialize<'de> for TriggersCount
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 TriggersCount
impl PartialEq for TriggersCount
Source§impl Serialize for TriggersCount
impl Serialize for TriggersCount
impl StructuralPartialEq for TriggersCount
Auto Trait Implementations§
impl Freeze for TriggersCount
impl RefUnwindSafe for TriggersCount
impl Send for TriggersCount
impl Sync for TriggersCount
impl Unpin for TriggersCount
impl UnwindSafe for TriggersCount
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