pub struct HeaderBinding {
pub match_span: Span,
pub param_spans: Vec<Span>,
pub step_def: Rc<StepRegistration>,
}Expand description
The binding paragraph shared by every row of a header-bound table.
Fields§
§match_span: Span§param_spans: Vec<Span>§step_def: Rc<StepRegistration>Auto Trait Implementations§
impl !RefUnwindSafe for HeaderBinding
impl !Send for HeaderBinding
impl !Sync for HeaderBinding
impl !UnwindSafe for HeaderBinding
impl Freeze for HeaderBinding
impl Unpin for HeaderBinding
impl UnsafeUnpin for HeaderBinding
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more