Trait sit_core::record::RecordExt
[−]
[src]
pub trait RecordExt: Record { fn has_type<S: AsRef<str>>(&self, typ: S) -> bool { ... } fn file<S: AsRef<str>>(&self, file: S) -> Option<Self::Read> { ... } fn serde_serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer, { ... } }
Provided Methods
fn has_type<S: AsRef<str>>(&self, typ: S) -> bool
fn file<S: AsRef<str>>(&self, file: S) -> Option<Self::Read>
fn serde_serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where
S: Serializer,
S: Serializer,
Implementors
impl<T> RecordExt for T where
T: Record,