pub struct IsoNames {
pub container: String,
pub sibling: String,
pub to_generic: String,
pub from_generic: String,
}Expand description
One container specialized for this inductive, with the names of its conversion isos.
Fields§
§container: StringThe generic container that was specialized (e.g. TList).
sibling: StringThe fresh mutual sibling (e.g. RTree$TList).
to_generic: Stringto_generic : sibling → container name — specialized to generic.
from_generic: Stringfrom_generic : container name → sibling — generic to specialized.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IsoNames
impl RefUnwindSafe for IsoNames
impl Send for IsoNames
impl Sync for IsoNames
impl Unpin for IsoNames
impl UnsafeUnpin for IsoNames
impl UnwindSafe for IsoNames
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