pub struct Part<'a, 't> {
pub role: Role,
pub datum: &'a Datum<'t>,
}Expand description
One role-tagged child of an annotated form.
Fields§
§role: RoleThe role this child plays in the definition form.
datum: &'a Datum<'t>The child datum.
Trait Implementations§
Auto Trait Implementations§
impl<'a, 't> Freeze for Part<'a, 't>
impl<'a, 't> RefUnwindSafe for Part<'a, 't>
impl<'a, 't> Send for Part<'a, 't>
impl<'a, 't> Sync for Part<'a, 't>
impl<'a, 't> Unpin for Part<'a, 't>
impl<'a, 't> UnsafeUnpin for Part<'a, 't>
impl<'a, 't> UnwindSafe for Part<'a, 't>
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