pub struct GlowConnection {
pub target: i32,
pub sources: Vec<i32>,
pub operation: Option<ConnectionOperation>,
pub disposition: Option<ConnectionDisposition>,
}Expand description
A matrix connection.
Fields§
§target: i32Target number
sources: Vec<i32>Source numbers
operation: Option<ConnectionOperation>Operation
disposition: Option<ConnectionDisposition>Disposition
Implementations§
Trait Implementations§
Source§impl Clone for GlowConnection
impl Clone for GlowConnection
Source§fn clone(&self) -> GlowConnection
fn clone(&self) -> GlowConnection
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 GlowConnection
impl Debug for GlowConnection
Source§impl Default for GlowConnection
impl Default for GlowConnection
Source§fn default() -> GlowConnection
fn default() -> GlowConnection
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GlowConnection
impl RefUnwindSafe for GlowConnection
impl Send for GlowConnection
impl Sync for GlowConnection
impl Unpin for GlowConnection
impl UnsafeUnpin for GlowConnection
impl UnwindSafe for GlowConnection
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