pub struct ControlProjection {
pub lifecycle: Option<SessionRecord>,
pub commands: BTreeMap<String, SessionCommand>,
pub stop_requests: BTreeMap<String, SessionStopRequest>,
}Fields§
§lifecycle: Option<SessionRecord>§commands: BTreeMap<String, SessionCommand>§stop_requests: BTreeMap<String, SessionStopRequest>Trait Implementations§
Source§impl Clone for ControlProjection
impl Clone for ControlProjection
Source§fn clone(&self) -> ControlProjection
fn clone(&self) -> ControlProjection
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 moreSource§impl Debug for ControlProjection
impl Debug for ControlProjection
Source§impl Default for ControlProjection
impl Default for ControlProjection
Source§fn default() -> ControlProjection
fn default() -> ControlProjection
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ControlProjection
impl RefUnwindSafe for ControlProjection
impl Send for ControlProjection
impl Sync for ControlProjection
impl Unpin for ControlProjection
impl UnsafeUnpin for ControlProjection
impl UnwindSafe for ControlProjection
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