pub struct TraitStorage {
pub fqcn: Arc<str>,
pub short_name: Arc<str>,
pub own_methods: IndexMap<Arc<str>, MethodStorage>,
pub own_properties: IndexMap<Arc<str>, PropertyStorage>,
pub own_constants: IndexMap<Arc<str>, ConstantStorage>,
pub template_params: Vec<TemplateParam>,
pub location: Option<Location>,
}Fields§
§fqcn: Arc<str>§short_name: Arc<str>§own_methods: IndexMap<Arc<str>, MethodStorage>§own_properties: IndexMap<Arc<str>, PropertyStorage>§own_constants: IndexMap<Arc<str>, ConstantStorage>§template_params: Vec<TemplateParam>§location: Option<Location>Trait Implementations§
Source§impl Clone for TraitStorage
impl Clone for TraitStorage
Source§fn clone(&self) -> TraitStorage
fn clone(&self) -> TraitStorage
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 TraitStorage
impl Debug for TraitStorage
Source§impl<'de> Deserialize<'de> for TraitStorage
impl<'de> Deserialize<'de> for TraitStorage
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TraitStorage
impl PartialEq for TraitStorage
Source§impl Serialize for TraitStorage
impl Serialize for TraitStorage
impl StructuralPartialEq for TraitStorage
Auto Trait Implementations§
impl Freeze for TraitStorage
impl RefUnwindSafe for TraitStorage
impl Send for TraitStorage
impl Sync for TraitStorage
impl Unpin for TraitStorage
impl UnsafeUnpin for TraitStorage
impl UnwindSafe for TraitStorage
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