pub struct InterfaceStorage {
pub fqcn: Arc<str>,
pub short_name: Arc<str>,
pub extends: Vec<Arc<str>>,
pub own_methods: IndexMap<Arc<str>, MethodStorage>,
pub own_constants: IndexMap<Arc<str>, ConstantStorage>,
pub template_params: Vec<TemplateParam>,
pub all_parents: Vec<Arc<str>>,
pub location: Option<Location>,
}Fields§
§fqcn: Arc<str>§short_name: Arc<str>§extends: Vec<Arc<str>>§own_methods: IndexMap<Arc<str>, MethodStorage>§own_constants: IndexMap<Arc<str>, ConstantStorage>§template_params: Vec<TemplateParam>§all_parents: Vec<Arc<str>>§location: Option<Location>Trait Implementations§
Source§impl Clone for InterfaceStorage
impl Clone for InterfaceStorage
Source§fn clone(&self) -> InterfaceStorage
fn clone(&self) -> InterfaceStorage
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 InterfaceStorage
impl Debug for InterfaceStorage
Source§impl<'de> Deserialize<'de> for InterfaceStorage
impl<'de> Deserialize<'de> for InterfaceStorage
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 InterfaceStorage
impl PartialEq for InterfaceStorage
Source§impl Serialize for InterfaceStorage
impl Serialize for InterfaceStorage
impl StructuralPartialEq for InterfaceStorage
Auto Trait Implementations§
impl Freeze for InterfaceStorage
impl RefUnwindSafe for InterfaceStorage
impl Send for InterfaceStorage
impl Sync for InterfaceStorage
impl Unpin for InterfaceStorage
impl UnsafeUnpin for InterfaceStorage
impl UnwindSafe for InterfaceStorage
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