pub struct CuOutputPack {
pub culist_index: u32,
pub msg_types: Vec<String>,
pub src_channels: Vec<Option<String>>,
}Fields§
§culist_index: u32§msg_types: Vec<String>§src_channels: Vec<Option<String>>Per-port source channel, parallel to msg_types.
None for ports that are not a bridge channel. A node may expose
several ports sharing the same msg_type distinguished only by their
bridge channel (e.g. a stereo driver publishing Image on left and
right); keying routing on msg_type alone would collapse those ports
(see #791).
Trait Implementations§
Source§impl Clone for CuOutputPack
impl Clone for CuOutputPack
Source§fn clone(&self) -> CuOutputPack
fn clone(&self) -> CuOutputPack
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 CuOutputPack
impl RefUnwindSafe for CuOutputPack
impl Send for CuOutputPack
impl Sync for CuOutputPack
impl Unpin for CuOutputPack
impl UnsafeUnpin for CuOutputPack
impl UnwindSafe for CuOutputPack
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> GetTypeRegistration for T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more