pub struct TapHeaders { /* private fields */ }
Implementations§
Source§impl TapHeaders
impl TapHeaders
pub fn shape_id(&self, rcd: &StringRecord) -> Option<String>
pub fn property_id(&self, rcd: &StringRecord) -> Option<String>
pub fn property_label(&self, rcd: &StringRecord) -> Option<String>
pub fn shape_label(&self, rcd: &StringRecord) -> Option<String>
pub fn repeatable(&self, rcd: &StringRecord) -> Option<String>
pub fn mandatory(&self, rcd: &StringRecord) -> Option<String>
pub fn value_datatype(&self, rcd: &StringRecord) -> Option<String>
pub fn value_nodetype(&self, rcd: &StringRecord) -> Option<String>
pub fn value_shape(&self, rcd: &StringRecord) -> Option<String>
pub fn value_constraint(&self, rcd: &StringRecord) -> Option<String>
pub fn value_constraint_type(&self, rcd: &StringRecord) -> Option<String>
pub fn note(&self, rcd: &StringRecord) -> Option<String>
pub fn extends_id(&self, rcd: &StringRecord) -> Option<String>
pub fn extends_label(&self, rcd: &StringRecord) -> Option<String>
Trait Implementations§
Source§impl Debug for TapHeaders
impl Debug for TapHeaders
Source§impl Default for TapHeaders
impl Default for TapHeaders
Source§fn default() -> TapHeaders
fn default() -> TapHeaders
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TapHeaders
impl RefUnwindSafe for TapHeaders
impl Send for TapHeaders
impl Sync for TapHeaders
impl Unpin for TapHeaders
impl UnwindSafe for TapHeaders
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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