Skip to main content

Attr

Struct Attr 

Source
pub struct Attr<'a> {
    pub name: &'a str,
    pub kind: AttrKind<'a>,
    pub default: DefaultValue<'a>,
    pub map: Option<&'a [EnumValue<'a>]>,
    pub nodefault: bool,
}

Fields§

§name: &'a str§kind: AttrKind<'a>§default: DefaultValue<'a>§map: Option<&'a [EnumValue<'a>]>§nodefault: bool

Implementations§

Source§

impl<'a> Attr<'a>

Source

pub fn integer(name: &'a str, target: &'a mut i32) -> Self

Source

pub fn integers(name: &'a str, target: &'a mut [i32]) -> Self

Source

pub fn uinteger(name: &'a str, target: &'a mut u32) -> Self

Source

pub fn uintegers(name: &'a str, target: &'a mut [u32]) -> Self

Source

pub fn short(name: &'a str, target: &'a mut i16) -> Self

Source

pub fn shorts(name: &'a str, target: &'a mut [i16]) -> Self

Source

pub fn ushort(name: &'a str, target: &'a mut u16) -> Self

Source

pub fn ushorts(name: &'a str, target: &'a mut [u16]) -> Self

Source§

impl<'a> Attr<'a>

Source

pub fn real(name: &'a str, target: &'a mut f64) -> Self

Source

pub fn reals(name: &'a str, target: &'a mut [f64]) -> Self

Source

pub fn string(name: &'a str, target: &'a mut [u8]) -> Self

Source

pub fn boolean(name: &'a str, target: &'a mut bool) -> Self

Source

pub fn booleans(name: &'a str, target: &'a mut [bool]) -> Self

Source

pub fn character(name: &'a str, target: &'a mut u8) -> Self

Source

pub fn characters(name: &'a str, target: &'a mut [u8]) -> Self

Source§

impl<'a> Attr<'a>

Source

pub fn time(name: &'a str, target: &'a mut f64) -> Self

Source

pub fn object(name: &'a str, attrs: &'a mut [Attr<'a>]) -> Self

Source

pub fn array(name: &'a str, array: Array<'a>) -> Self

Source

pub fn check(name: &'a str, expected: &'a str) -> Self

Source

pub fn ignore_any() -> Self

Source

pub fn with_default(self, default: DefaultValue<'a>) -> Self

Source

pub fn with_map(self, map: &'a [EnumValue<'a>]) -> Self

Source

pub fn nodefault(self) -> Self

Auto Trait Implementations§

§

impl<'a> Freeze for Attr<'a>

§

impl<'a> !RefUnwindSafe for Attr<'a>

§

impl<'a> !Send for Attr<'a>

§

impl<'a> !Sync for Attr<'a>

§

impl<'a> Unpin for Attr<'a>

§

impl<'a> UnsafeUnpin for Attr<'a>

§

impl<'a> !UnwindSafe for Attr<'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.