Skip to main content

ObjectBuilder

Struct ObjectBuilder 

Source
pub struct ObjectBuilder<'input, 'a, const N: usize> { /* private fields */ }

Implementations§

Source§

impl<'input, 'a, const N: usize> ObjectBuilder<'input, 'a, N>

Source

pub fn new(input: &'input str) -> Self

Source

pub fn attr(self, attr: Attr<'a>) -> Self

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source§

impl<'input, 'a, const N: usize> ObjectBuilder<'input, 'a, N>

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source§

impl<'input, 'a, const N: usize> ObjectBuilder<'input, 'a, N>

Source

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

Source

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

Source

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

Source

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

Source

pub fn ignore_any(self) -> Self

Source

pub fn read(self) -> Result<usize>

Trait Implementations§

Source§

impl<const N: usize> Drop for ObjectBuilder<'_, '_, N>

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<'input, 'a, const N: usize> Freeze for ObjectBuilder<'input, 'a, N>

§

impl<'input, 'a, const N: usize> !RefUnwindSafe for ObjectBuilder<'input, 'a, N>

§

impl<'input, 'a, const N: usize> !Send for ObjectBuilder<'input, 'a, N>

§

impl<'input, 'a, const N: usize> !Sync for ObjectBuilder<'input, 'a, N>

§

impl<'input, 'a, const N: usize> Unpin for ObjectBuilder<'input, 'a, N>

§

impl<'input, 'a, const N: usize> UnsafeUnpin for ObjectBuilder<'input, 'a, N>

§

impl<'input, 'a, const N: usize> !UnwindSafe for ObjectBuilder<'input, 'a, N>

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.