pub struct PropertyStorage {
pub name: Arc<str>,
pub ty: Option<Union>,
pub inferred_ty: Option<Union>,
pub visibility: Visibility,
pub is_static: bool,
pub is_readonly: bool,
pub default: Option<Union>,
pub location: Option<Location>,
}Fields§
§name: Arc<str>§ty: Option<Union>§inferred_ty: Option<Union>§visibility: Visibility§is_static: bool§is_readonly: bool§default: Option<Union>§location: Option<Location>Trait Implementations§
Source§impl Clone for PropertyStorage
impl Clone for PropertyStorage
Source§fn clone(&self) -> PropertyStorage
fn clone(&self) -> PropertyStorage
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 PropertyStorage
impl Debug for PropertyStorage
Source§impl<'de> Deserialize<'de> for PropertyStorage
impl<'de> Deserialize<'de> for PropertyStorage
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 PropertyStorage
impl PartialEq for PropertyStorage
Source§impl Serialize for PropertyStorage
impl Serialize for PropertyStorage
impl StructuralPartialEq for PropertyStorage
Auto Trait Implementations§
impl Freeze for PropertyStorage
impl RefUnwindSafe for PropertyStorage
impl Send for PropertyStorage
impl Sync for PropertyStorage
impl Unpin for PropertyStorage
impl UnsafeUnpin for PropertyStorage
impl UnwindSafe for PropertyStorage
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