pub struct Record<S = String> {
pub name: S,
pub parameters: Vec<Parameter<S>>,
}Expand description
One named parameter record within a DATA instance.
Fields§
§name: SRecord name.
parameters: Vec<Parameter<S>>Positional parameters.
Trait Implementations§
impl<S: PartialEq> StructuralPartialEq for Record<S>
Auto Trait Implementations§
impl<S> Freeze for Record<S>
impl<S> RefUnwindSafe for Record<S>
impl<S> Send for Record<S>
impl<S> Sync for Record<S>
impl<S> Unpin for Record<S>
impl<S> UnsafeUnpin for Record<S>
impl<S> UnwindSafe for Record<S>
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