pub struct PortConnectivityReference<R0> {
pub tree: R0,
}
Expand description
Derived columnar reference for a struct.
Fields§
§tree: R0
Field for #names.
Trait Implementations§
Source§impl<R0: Clone> Clone for PortConnectivityReference<R0>
impl<R0: Clone> Clone for PortConnectivityReference<R0>
Source§fn clone(&self) -> PortConnectivityReference<R0>
fn clone(&self) -> PortConnectivityReference<R0>
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<R0: Debug> Debug for PortConnectivityReference<R0>
impl<R0: Debug> Debug for PortConnectivityReference<R0>
Source§impl<TS, R0> PartialEq<PortConnectivity<TS>> for PortConnectivityReference<R0>
impl<TS, R0> PartialEq<PortConnectivity<TS>> for PortConnectivityReference<R0>
Source§impl<C0, R0> Push<PortConnectivityReference<R0>> for PortConnectivityContainer<C0>where
C0: Push<R0>,
impl<C0, R0> Push<PortConnectivityReference<R0>> for PortConnectivityContainer<C0>where
C0: Push<R0>,
Source§fn push(&mut self, item: PortConnectivityReference<R0>)
fn push(&mut self, item: PortConnectivityReference<R0>)
Pushes an item onto
self
.Source§fn extend(&mut self, iter: impl IntoIterator<Item = T>)
fn extend(&mut self, iter: impl IntoIterator<Item = T>)
Pushes elements of an iterator onto
self
.impl<R0: Copy> Copy for PortConnectivityReference<R0>
Auto Trait Implementations§
impl<R0> Freeze for PortConnectivityReference<R0>where
R0: Freeze,
impl<R0> RefUnwindSafe for PortConnectivityReference<R0>where
R0: RefUnwindSafe,
impl<R0> Send for PortConnectivityReference<R0>where
R0: Send,
impl<R0> Sync for PortConnectivityReference<R0>where
R0: Sync,
impl<R0> Unpin for PortConnectivityReference<R0>where
R0: Unpin,
impl<R0> UnwindSafe for PortConnectivityReference<R0>where
R0: UnwindSafe,
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,
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