pub struct ExpandedRef<'a> {
pub id: Option<Nullable<IdRef<'a>>>,
pub type_: Option<Nullable<&'a Type>>,
pub context: Option<&'a Context>,
pub reverse: Option<&'a Key>,
pub index: Option<&'a Index>,
pub language: Option<Nullable<&'a LenientLangTag>>,
pub direction: Option<Nullable<Direction>>,
pub container: Option<Nullable<&'a Container>>,
pub nest: Option<&'a Nest>,
pub prefix: Option<bool>,
pub propagate: Option<bool>,
pub protected: Option<bool>,
}
Expand description
Expanded term definition.
Fields§
§id: Option<Nullable<IdRef<'a>>>
§type_: Option<Nullable<&'a Type>>
§context: Option<&'a Context>
§reverse: Option<&'a Key>
§index: Option<&'a Index>
§language: Option<Nullable<&'a LenientLangTag>>
§direction: Option<Nullable<Direction>>
§container: Option<Nullable<&'a Container>>
§nest: Option<&'a Nest>
§prefix: Option<bool>
§propagate: Option<bool>
§protected: Option<bool>
Trait Implementations§
Source§impl<'a> Debug for ExpandedRef<'a>
impl<'a> Debug for ExpandedRef<'a>
Source§impl<'a> Default for ExpandedRef<'a>
impl<'a> Default for ExpandedRef<'a>
Source§impl<'a> From<Nullable<&'a TermDefinition>> for ExpandedRef<'a>
impl<'a> From<Nullable<&'a TermDefinition>> for ExpandedRef<'a>
Source§fn from(value: Nullable<&'a TermDefinition>) -> Self
fn from(value: Nullable<&'a TermDefinition>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<'a> Freeze for ExpandedRef<'a>
impl<'a> RefUnwindSafe for ExpandedRef<'a>
impl<'a> Send for ExpandedRef<'a>
impl<'a> Sync for ExpandedRef<'a>
impl<'a> Unpin for ExpandedRef<'a>
impl<'a> UnwindSafe for ExpandedRef<'a>
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