pub struct TyS(/* private fields */);
Expand description
Implementations§
Source§impl TyS
impl TyS
Sourcepub fn topvar(name: TopVarName) -> Self
pub fn topvar(name: TopVarName) -> Self
Smart constructor for TyS, TyS_::TopVar case.
Sourcepub fn object(object_type: ObjectType) -> Self
pub fn object(object_type: ObjectType) -> Self
Smart constructor for TyS, TyS_::Object case.
Sourcepub fn morphism(morphism_type: MorphismType, dom: TmS, cod: TmS) -> Self
pub fn morphism(morphism_type: MorphismType, dom: TmS, cod: TmS) -> Self
Smart constructor for TyS, TyS_::Morphism case.
Sourcepub fn record(record_s: RecordS) -> Self
pub fn record(record_s: RecordS) -> Self
Smart constructor for TyS, TyS_::Record case.
Sourcepub fn specialize(
ty: TyS,
specializations: Vec<(Vec<(FieldName, LabelSegment)>, TyS)>,
) -> Self
pub fn specialize( ty: TyS, specializations: Vec<(Vec<(FieldName, LabelSegment)>, TyS)>, ) -> Self
Smart constructor for TyS, TyS_::Specialize case.
Sourcepub fn unit() -> Self
pub fn unit() -> Self
Smart constructor for TyS, TyS_::Unit case.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TyS
impl RefUnwindSafe for TyS
impl !Send for TyS
impl !Sync for TyS
impl Unpin for TyS
impl UnwindSafe for TyS
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§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.