pub struct ActionLimits {
pub count: u8,
pub max_timeout: u16,
}Fields§
§count: u8Max number of actions per app.
max_timeout: u16Action request timeout.
Unit: seconds.
Trait Implementations§
Source§impl Clone for ActionLimits
impl Clone for ActionLimits
Source§fn clone(&self) -> ActionLimits
fn clone(&self) -> ActionLimits
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 ActionLimits
impl Debug for ActionLimits
Source§impl Default for ActionLimits
impl Default for ActionLimits
Source§impl<'de> Deserialize<'de> for ActionLimits
impl<'de> Deserialize<'de> for ActionLimits
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 ActionLimits
impl RefUnwindSafe for ActionLimits
impl Send for ActionLimits
impl Sync for ActionLimits
impl Unpin for ActionLimits
impl UnwindSafe for ActionLimits
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