pub struct InterfaceData {
pub possession_modules: Vec<DualModuleSerialWeak>,
pub interfacing_vertices: Vec<Vec<VertexWeak>>,
}Expand description
interface consists of several vertices; each vertex exists as a virtual vertex in several different serial dual modules. each virtual vertex exists in at most one interface
Fields§
§possession_modules: Vec<DualModuleSerialWeak>the serial dual modules that processes these virtual vertices,
interfacing_vertices: Vec<Vec<VertexWeak>>the virtual vertices references in different modules, [idx of serial dual module] [idx of interfacing vertex]
Auto Trait Implementations§
impl Freeze for InterfaceData
impl !RefUnwindSafe for InterfaceData
impl Send for InterfaceData
impl Sync for InterfaceData
impl Unpin for InterfaceData
impl !UnwindSafe for InterfaceData
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§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> 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