pub struct OptTaggedParser {
pub class: Class,
pub tag: Tag,
}
mtls
only.Expand description
Helper object to parse TAGGED OPTIONAL types (explicit or implicit)
This object can be used similarly to a builder pattern, to specify the expected class and tag of the object to parse, and the content parsing function.
The content parsing function takes two arguments: the outer header, and the data.
It can be used for both EXPLICIT or IMPLICIT tagged objects by using parsing functions that expect a header (or not) in the contents.
The OptTaggedParser::from
method is a shortcut to build an object with ContextSpecific
class and the given tag. The OptTaggedParser::new
method is more generic.
See also OptTaggedExplicit
and OptTaggedImplicit
for alternatives that implement FromBer
/
FromDer
.
§Examples
To parse a [APPLICATION 0] EXPLICIT INTEGER OPTIONAL
object:
use asn1_rs::{Class, FromDer, Integer, Tag, OptTaggedParser};
let bytes = &[0x60, 0x03, 0x2, 0x1, 0x2];
let (_, tagged) = OptTaggedParser::new(Class::Application, Tag(0))
.parse_der(bytes, |_, data| Integer::from_der(data))
.unwrap();
assert_eq!(tagged, Some(Integer::from(2)));
To parse a [0] IMPLICIT INTEGER OPTIONAL
object:
use asn1_rs::{Error, Integer, OptTaggedParser};
let bytes = &[0xa0, 0x1, 0x2];
let (_, tagged) = OptTaggedParser::from(0)
.parse_der::<_, Error, _>(bytes, |_, data| Ok((&[], Integer::new(data))))
.unwrap();
assert_eq!(tagged, Some(Integer::from(2)));
Fields§
§class: Class
The expected class for the object to parse
tag: Tag
The expected tag for the object to parse
Implementations§
source§impl OptTaggedParser
impl OptTaggedParser
sourcepub const fn new(class: Class, tag: Tag) -> OptTaggedParser
pub const fn new(class: Class, tag: Tag) -> OptTaggedParser
Build a new OptTaggedParser
object.
If using Class::ContextSpecific
, using OptTaggedParser::from
with either a Tag
or u32
is
a shorter way to build this object.
pub const fn universal(tag: u32) -> OptTaggedParser
pub const fn tagged(tag: u32) -> OptTaggedParser
pub const fn application(tag: u32) -> OptTaggedParser
pub const fn private(tag: u32) -> OptTaggedParser
sourcepub fn parse_ber<'a, T, E, F>(
&self,
bytes: &'a [u8],
f: F,
) -> Result<(&'a [u8], Option<T>), Err<E>>
pub fn parse_ber<'a, T, E, F>( &self, bytes: &'a [u8], f: F, ) -> Result<(&'a [u8], Option<T>), Err<E>>
Parse input as BER, and apply the provided function to parse object.
Returns the remaining bytes, and Some(T)
if expected tag was found, else None
.
This function returns an error if tag was found but has a different class, or if parsing fails.
§Examples
To parse a [0] EXPLICIT INTEGER OPTIONAL
object:
use asn1_rs::{FromBer, Integer, OptTaggedParser};
let bytes = &[0xa0, 0x03, 0x2, 0x1, 0x2];
let (_, tagged) = OptTaggedParser::from(0)
.parse_ber(bytes, |_, data| Integer::from_ber(data))
.unwrap();
assert_eq!(tagged, Some(Integer::from(2)));
sourcepub fn parse_der<'a, T, E, F>(
&self,
bytes: &'a [u8],
f: F,
) -> Result<(&'a [u8], Option<T>), Err<E>>
pub fn parse_der<'a, T, E, F>( &self, bytes: &'a [u8], f: F, ) -> Result<(&'a [u8], Option<T>), Err<E>>
Parse input as DER, and apply the provided function to parse object.
Returns the remaining bytes, and Some(T)
if expected tag was found, else None
.
This function returns an error if tag was found but has a different class, or if parsing fails.
§Examples
To parse a [0] EXPLICIT INTEGER OPTIONAL
object:
use asn1_rs::{FromDer, Integer, OptTaggedParser};
let bytes = &[0xa0, 0x03, 0x2, 0x1, 0x2];
let (_, tagged) = OptTaggedParser::from(0)
.parse_der(bytes, |_, data| Integer::from_der(data))
.unwrap();
assert_eq!(tagged, Some(Integer::from(2)));
Trait Implementations§
source§impl Debug for OptTaggedParser
impl Debug for OptTaggedParser
source§impl From<Tag> for OptTaggedParser
impl From<Tag> for OptTaggedParser
source§fn from(tag: Tag) -> OptTaggedParser
fn from(tag: Tag) -> OptTaggedParser
Build a TaggedOptional
object with class ContextSpecific
and given tag
source§impl From<u32> for OptTaggedParser
impl From<u32> for OptTaggedParser
source§fn from(tag: u32) -> OptTaggedParser
fn from(tag: u32) -> OptTaggedParser
Build a TaggedOptional
object with class ContextSpecific
and given tag
Auto Trait Implementations§
impl Freeze for OptTaggedParser
impl RefUnwindSafe for OptTaggedParser
impl Send for OptTaggedParser
impl Sync for OptTaggedParser
impl Unpin for OptTaggedParser
impl UnwindSafe for OptTaggedParser
Blanket Implementations§
source§impl<T> AsAny for Twhere
T: Any,
impl<T> AsAny for Twhere
T: Any,
fn as_any_ref(&self) -> &(dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
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> ⓘ
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> ⓘ
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 moresource§impl<T> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere
T: ?Sized,
source§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the foreground set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red()
and
green()
, which have the same functionality but are
pithier.
§Example
Set foreground color to white using fg()
:
use yansi::{Paint, Color};
painted.fg(Color::White);
Set foreground color to white using white()
.
use yansi::Paint;
painted.white();
source§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
Returns self
with the
fg()
set to
Color::BrightBlack
.
§Example
println!("{}", value.bright_black());
source§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
source§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
Returns self
with the
fg()
set to
Color::BrightGreen
.
§Example
println!("{}", value.bright_green());
source§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
Returns self
with the
fg()
set to
Color::BrightYellow
.
§Example
println!("{}", value.bright_yellow());
source§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
source§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
Returns self
with the
fg()
set to
Color::BrightMagenta
.
§Example
println!("{}", value.bright_magenta());
source§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
source§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
Returns self
with the
fg()
set to
Color::BrightWhite
.
§Example
println!("{}", value.bright_white());
source§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the background set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red()
and
on_green()
, which have the same functionality but
are pithier.
§Example
Set background color to red using fg()
:
use yansi::{Paint, Color};
painted.bg(Color::Red);
Set background color to red using on_red()
.
use yansi::Paint;
painted.on_red();
source§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
source§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
source§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
Returns self
with the
bg()
set to
Color::BrightBlack
.
§Example
println!("{}", value.on_bright_black());
source§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
source§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
Returns self
with the
bg()
set to
Color::BrightGreen
.
§Example
println!("{}", value.on_bright_green());
source§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
Returns self
with the
bg()
set to
Color::BrightYellow
.
§Example
println!("{}", value.on_bright_yellow());
source§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
Returns self
with the
bg()
set to
Color::BrightBlue
.
§Example
println!("{}", value.on_bright_blue());
source§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
Returns self
with the
bg()
set to
Color::BrightMagenta
.
§Example
println!("{}", value.on_bright_magenta());
source§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
Returns self
with the
bg()
set to
Color::BrightCyan
.
§Example
println!("{}", value.on_bright_cyan());
source§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
Returns self
with the
bg()
set to
Color::BrightWhite
.
§Example
println!("{}", value.on_bright_white());
source§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling Attribute
value
.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold()
and
underline()
, which have the same functionality
but are pithier.
§Example
Make text bold using attr()
:
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);
Make text bold using using bold()
.
use yansi::Paint;
painted.bold();
source§fn underline(&self) -> Painted<&T>
fn underline(&self) -> Painted<&T>
Returns self
with the
attr()
set to
Attribute::Underline
.
§Example
println!("{}", value.underline());
source§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
Returns self
with the
attr()
set to
Attribute::RapidBlink
.
§Example
println!("{}", value.rapid_blink());
source§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi
Quirk
value
.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask()
and
wrap()
, which have the same functionality but are
pithier.
§Example
Enable wrapping using .quirk()
:
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);
Enable wrapping using wrap()
.
use yansi::Paint;
painted.wrap();
source§fn clear(&self) -> Painted<&T>
👎Deprecated since 1.0.1: renamed to resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.
fn clear(&self) -> Painted<&T>
resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.source§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the Condition
value
applies. Replaces any previous condition.
See the crate level docs for more details.
§Example
Enable styling painted
only when both stdout
and stderr
are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);