Struct paralegal_spdg::TypeDescription
source · pub struct TypeDescription {
pub rendering: String,
pub otypes: Box<[TypeId]>,
pub markers: Vec<Identifier>,
}
Expand description
Metadata about a type
Fields§
§rendering: String
How rustc would debug print this type
otypes: Box<[TypeId]>
Aliases
markers: Vec<Identifier>
Attached markers. Guaranteed not to be empty.
Trait Implementations§
source§impl Clone for TypeDescription
impl Clone for TypeDescription
source§fn clone(&self) -> TypeDescription
fn clone(&self) -> TypeDescription
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 Debug for TypeDescription
impl Debug for TypeDescription
source§impl<'de> Deserialize<'de> for TypeDescription
impl<'de> Deserialize<'de> for TypeDescription
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
Auto Trait Implementations§
impl RefUnwindSafe for TypeDescription
impl Send for TypeDescription
impl Sync for TypeDescription
impl Unpin for TypeDescription
impl UnwindSafe for TypeDescription
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