pub struct ControlDryRun {
pub command: String,
pub allowed: bool,
pub warnings: Vec<String>,
pub reason: String,
pub run_id: Option<String>,
pub remote_addr: SocketAddr,
}Fields§
§command: String§allowed: bool§warnings: Vec<String>§reason: String§run_id: Option<String>§remote_addr: SocketAddrTrait Implementations§
Source§impl Clone for ControlDryRun
impl Clone for ControlDryRun
Source§fn clone(&self) -> ControlDryRun
fn clone(&self) -> ControlDryRun
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 ControlDryRun
impl RefUnwindSafe for ControlDryRun
impl Send for ControlDryRun
impl Sync for ControlDryRun
impl Unpin for ControlDryRun
impl UnsafeUnpin for ControlDryRun
impl UnwindSafe for ControlDryRun
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