pub enum TypeContent {
Comment(String),
Text(String),
Type(String),
Name(String),
Member(Member),
Proto(Proto),
Param(Param),
}Variants§
Trait Implementations§
Source§impl Clone for TypeContent
impl Clone for TypeContent
Source§fn clone(&self) -> TypeContent
fn clone(&self) -> TypeContent
Returns a duplicate 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 Debug for TypeContent
impl Debug for TypeContent
Source§impl PartialEq for TypeContent
impl PartialEq for TypeContent
impl Eq for TypeContent
impl StructuralPartialEq for TypeContent
Auto Trait Implementations§
impl Freeze for TypeContent
impl RefUnwindSafe for TypeContent
impl Send for TypeContent
impl Sync for TypeContent
impl Unpin for TypeContent
impl UnwindSafe for TypeContent
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