Preamble

Struct Preamble 

Source
pub struct Preamble<'a> {
    pub version: &'a str,
}
Expand description

The TAP Preamble declares the start of a TAP document.

Fields§

§version: &'a str

TAP specification version. Can be any semantic version string (e.g. 14 or 14.1.3).

Implementations§

Source§

impl<'a> Preamble<'a>

Source

pub fn parse_from_str(content: &'a str) -> Result<Self>

Parse Preamble from a &str.

§Examples

Parsing a TAP version 14 preamble may look like this:

use tapconsooomer::Preamble;

let content = "TAP version 14";
let preamble = Preamble::parse_from_str(content).expect("Parser error");
assert_eq!(preamble.version, "14");

Semantic versioning is supported aswell:

use tapconsooomer::Preamble;

let content = "TAP version 13.1";
let preamble = Preamble::parse_from_str(content).expect("Parser error");
assert_eq!(preamble.version, "13.1");

Trait Implementations§

Source§

impl<'a> Debug for Preamble<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a> Serialize for Preamble<'a>

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for Preamble<'a>

§

impl<'a> RefUnwindSafe for Preamble<'a>

§

impl<'a> Send for Preamble<'a>

§

impl<'a> Sync for Preamble<'a>

§

impl<'a> Unpin for Preamble<'a>

§

impl<'a> UnwindSafe for Preamble<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.