pub enum PactType {
StringLike(StringLike),
Numeric(Numeric),
List(Vec<PactType>),
}Expand description
Over-arching pact type system
Variants§
Implementations§
Trait Implementations§
impl StructuralPartialEq for PactType
Auto Trait Implementations§
impl Freeze for PactType
impl RefUnwindSafe for PactType
impl Send for PactType
impl Sync for PactType
impl Unpin for PactType
impl UnwindSafe for PactType
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