pub struct HeaderRecord {
pub section: String,
pub id: String,
pub type: String,
pub number: String,
pub description: String,
}Expand description
A VCF header record with its section (INFO, FORMAT, FILTER, etc.).
Fields§
§section: String§id: String§type: String§number: String§description: StringTrait Implementations§
Source§impl FromNapiValue for HeaderRecord
impl FromNapiValue for HeaderRecord
Source§unsafe fn from_napi_value(
env: napi_env,
napi_val: napi_value,
) -> Result<HeaderRecord>
unsafe fn from_napi_value( env: napi_env, napi_val: napi_value, ) -> Result<HeaderRecord>
Safety Read more
fn from_unknown(value: Unknown<'_>) -> Result<Self, Error>
Source§impl ToNapiValue for HeaderRecord
impl ToNapiValue for HeaderRecord
Source§unsafe fn to_napi_value(env: napi_env, val: HeaderRecord) -> Result<napi_value>
unsafe fn to_napi_value(env: napi_env, val: HeaderRecord) -> Result<napi_value>
Safety Read more
fn into_unknown(self, env: &Env) -> Result<Unknown<'_>, Error>
Source§impl TypeName for HeaderRecord
impl TypeName for HeaderRecord
Auto Trait Implementations§
impl Freeze for HeaderRecord
impl RefUnwindSafe for HeaderRecord
impl Send for HeaderRecord
impl Sync for HeaderRecord
impl Unpin for HeaderRecord
impl UnwindSafe for HeaderRecord
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