Struct gluon_base::ast::TypedIdent
source · pub struct TypedIdent<Id = Symbol, T = ArcType<Id>> {
pub typ: T,
pub name: Id,
}
Fields§
§typ: T
§name: Id
Implementations§
source§impl<Id, T> TypedIdent<Id, T>where
T: Default,
impl<Id, T> TypedIdent<Id, T>where
T: Default,
pub fn new(name: Id) -> TypedIdent<Id, T>
source§impl<Id, T> TypedIdent<Id, T>
impl<Id, T> TypedIdent<Id, T>
pub fn new2(name: Id, typ: T) -> TypedIdent<Id, T>
Trait Implementations§
source§impl<Id, T> AsRef<str> for TypedIdent<Id, T>
impl<Id, T> AsRef<str> for TypedIdent<Id, T>
source§impl<'ast, Id, T> AstClone<'ast, Id> for TypedIdent<Id, T>
impl<'ast, Id, T> AstClone<'ast, Id> for TypedIdent<Id, T>
source§impl<Id: Clone, T: Clone> Clone for TypedIdent<Id, T>
impl<Id: Clone, T: Clone> Clone for TypedIdent<Id, T>
source§fn clone(&self) -> TypedIdent<Id, T>
fn clone(&self) -> TypedIdent<Id, T>
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<Id: Default, T: Default> Default for TypedIdent<Id, T>
impl<Id: Default, T: Default> Default for TypedIdent<Id, T>
source§fn default() -> TypedIdent<Id, T>
fn default() -> TypedIdent<Id, T>
Returns the “default value” for a type. Read more
source§impl<'de, Id, T, U> DeserializeState<'de, Seed<Id, U>> for TypedIdent<Id, T>where
T: DeserializeState<'de, Seed<Id, U>>,
U: Clone + TypePtr<Id = Id> + From<Type<Id, U>> + Any + DeserializeState<'de, Seed<Id, U>>,
Id: DeserializeState<'de, Seed<Id, U>> + Clone + Any,
impl<'de, Id, T, U> DeserializeState<'de, Seed<Id, U>> for TypedIdent<Id, T>where
T: DeserializeState<'de, Seed<Id, U>>,
U: Clone + TypePtr<Id = Id> + From<Type<Id, U>> + Any + DeserializeState<'de, Seed<Id, U>>,
Id: DeserializeState<'de, Seed<Id, U>> + Clone + Any,
source§fn deserialize_state<__D>(
__seed: &mut Seed<Id, U>,
__deserializer: __D
) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize_state<__D>(
__seed: &mut Seed<Id, U>,
__deserializer: __D
) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserializes
Self
using seed
and the deserializer
source§impl<Id: PartialEq, T: PartialEq> PartialEq for TypedIdent<Id, T>
impl<Id: PartialEq, T: PartialEq> PartialEq for TypedIdent<Id, T>
source§fn eq(&self, other: &TypedIdent<Id, T>) -> bool
fn eq(&self, other: &TypedIdent<Id, T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<Id, T> SerializeState<SeSeed> for TypedIdent<Id, T>
impl<Id, T> SerializeState<SeSeed> for TypedIdent<Id, T>
source§fn serialize_state<__S>(
&self,
__serializer: __S,
__seed: &SeSeed
) -> Result<__S::Ok, __S::Error>where
__S: Serializer,
fn serialize_state<__S>(
&self,
__serializer: __S,
__seed: &SeSeed
) -> Result<__S::Ok, __S::Error>where
__S: Serializer,
Serializes
self
source§impl<Id: Clone> Typed for TypedIdent<Id>
impl<Id: Clone> Typed for TypedIdent<Id>
impl<Id: Eq, T: Eq> Eq for TypedIdent<Id, T>
impl<Id, T> StructuralEq for TypedIdent<Id, T>
impl<Id, T> StructuralPartialEq for TypedIdent<Id, T>
Auto Trait Implementations§
impl<Id, T> RefUnwindSafe for TypedIdent<Id, T>where
Id: RefUnwindSafe,
T: RefUnwindSafe,
impl<Id, T> Send for TypedIdent<Id, T>
impl<Id, T> Sync for TypedIdent<Id, T>
impl<Id, T> Unpin for TypedIdent<Id, T>
impl<Id, T> UnwindSafe for TypedIdent<Id, T>where
Id: UnwindSafe,
T: 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