pub struct ChannelLocation {
pub path: Path,
pub kind: ChannelKind,
pub initial_credit: u32,
}Expand description
A precomputed location of a channel within a type structure.
Fields§
§path: PathPath from the root to this channel.
kind: ChannelKindWhether this is an Rx or Tx channel.
initial_credit: u32Initial credit for this channel, from the const generic N.
Auto Trait Implementations§
impl Freeze for ChannelLocation
impl RefUnwindSafe for ChannelLocation
impl Send for ChannelLocation
impl Sync for ChannelLocation
impl Unpin for ChannelLocation
impl UnsafeUnpin for ChannelLocation
impl UnwindSafe for ChannelLocation
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