pub struct CommandPermitRequest {
pub command_id: String,
pub tenant_id: String,
pub owner: String,
pub now_ms: u64,
pub lease_ms: u64,
pub global_limit: usize,
pub tenant_limit: usize,
}Fields§
§command_id: String§tenant_id: String§owner: String§now_ms: u64§lease_ms: u64§global_limit: usize§tenant_limit: usizeTrait Implementations§
Source§impl Clone for CommandPermitRequest
impl Clone for CommandPermitRequest
Source§fn clone(&self) -> CommandPermitRequest
fn clone(&self) -> CommandPermitRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CommandPermitRequest
impl RefUnwindSafe for CommandPermitRequest
impl Send for CommandPermitRequest
impl Sync for CommandPermitRequest
impl Unpin for CommandPermitRequest
impl UnsafeUnpin for CommandPermitRequest
impl UnwindSafe for CommandPermitRequest
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