pub struct GroundTypeRef<S: Sort> {
pub sort: S,
pub parameters: Vec<TypeRef<S>>,
}
Fields§
§sort: S
§parameters: Vec<TypeRef<S>>
Trait Implementations§
Source§impl<S: Clone + Sort> Clone for GroundTypeRef<S>
impl<S: Clone + Sort> Clone for GroundTypeRef<S>
Source§fn clone(&self) -> GroundTypeRef<S>
fn clone(&self) -> GroundTypeRef<S>
Returns a copy 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<S: Sort> From<GroundTypeRef<S>> for SortMissmatch<S>
impl<S: Sort> From<GroundTypeRef<S>> for SortMissmatch<S>
Source§fn from(ty: GroundTypeRef<S>) -> SortMissmatch<S>
fn from(ty: GroundTypeRef<S>) -> SortMissmatch<S>
Converts to this type from the input type.
Auto Trait Implementations§
impl<S> Freeze for GroundTypeRef<S>where
S: Freeze,
impl<S> RefUnwindSafe for GroundTypeRef<S>where
S: RefUnwindSafe,
impl<S> Send for GroundTypeRef<S>where
S: Send,
impl<S> Sync for GroundTypeRef<S>where
S: Sync,
impl<S> Unpin for GroundTypeRef<S>where
S: Unpin,
impl<S> UnwindSafe for GroundTypeRef<S>where
S: 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