Struct tblgen::record::Record

source ·
pub struct Record<'a> { /* private fields */ }
Expand description

An immutable reference to a TableGen record.

This reference cannot outlive the RecordKeeper from which it is borrowed.

Implementations§

source§

impl<'a> Record<'a>

source

pub unsafe fn from_raw(ptr: TableGenRecordRef) -> Record<'a>

Creates a record from a raw object.

Safety

The raw object must be valid.

source

pub fn name(self) -> Result<&'a str, Error>

Returns the name of the record.

Errors

Returns an error if the name is not a valid UTF-8 string.

source

pub fn bit_value<'n>(self, name: &'n str) -> Result<bool, Error>

Returns the boolean value of the field with the given name if this field is of type BitInit.

source

pub fn bits_value<'n>(self, name: &'n str) -> Result<Vec<bool>, Error>

Returns the field with the given name converted to a Vec<bool> if this field is of type BitsInit.

source

pub fn int_value<'n>(self, name: &'n str) -> Result<i64, Error>

Returns the integer value of the field with the given name if this field is of type IntInit.

source

pub fn code_value<'n>(self, name: &'n str) -> Result<String, Error>

Returns the field with the given name converted to a String if this field is of type StringInit.

Note that this copies the string into a new string.

source

pub fn code_str_value<'n>(self, name: &'n str) -> Result<&'a str, Error>

Returns the field with the given name converted to a &str if this field is of type StringInit.

source

pub fn string_value<'n>(self, name: &'n str) -> Result<String, Error>

Returns the field with the given name converted to a String if this field is of type StringInit.

Note that this copies the string into a new string.

source

pub fn str_value<'n>(self, name: &'n str) -> Result<&'a str, Error>

Returns the field with the given name converted to a &str if this field is of type StringInit.

source

pub fn def_value<'n>(self, name: &'n str) -> Result<Record<'a>, Error>

Returns the field with the given name converted to a Record if this field is of type DefInit.

source

pub fn list_value<'n>(self, name: &'n str) -> Result<ListInit<'a>, Error>

Returns the field with the given name converted to a ListInit if this field is of type ListInit.

source

pub fn dag_value<'n>(self, name: &'n str) -> Result<DagInit<'a>, Error>

Returns the field with the given name converted to a DagInit if this field is of type DagInit.

source

pub fn value<'n>(self, name: &'n str) -> Result<RecordValue<'a>, Error>

Returns a RecordValue for the field with the given name.

source

pub fn anonymous(self) -> bool

Returns true if the record is anonymous.

source

pub fn subclass_of(self, class: &str) -> bool

Returns true if the record is a subclass of the class with the given name.

source

pub fn values(self) -> RecordValueIter<'a>

Returns an iterator over the fields of the record.

The iterator yields RecordValue structs

Trait Implementations§

source§

impl<'a> Clone for Record<'a>

source§

fn clone(&self) -> Record<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Debug for Record<'a>

source§

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

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

impl<'a> Display for Record<'a>

source§

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

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

impl<'a> From<DefInit<'a>> for Record<'a>

source§

fn from(value: DefInit<'a>) -> Self

Converts to this type from the input type.
source§

impl<'a> PartialEq<Record<'a>> for Record<'a>

source§

fn eq(&self, other: &Record<'a>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a> SourceLoc for Record<'a>

source§

fn source_location(self) -> SourceLocation

Returns the source location.
source§

impl<'a> TryFrom<RecordValue<'a>> for Record<'a>

§

type Error = SourceError<TableGenError>

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

fn try_from(record_value: RecordValue<'a>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'a> TryFrom<TypedInit<'a>> for Record<'a>

§

type Error = SourceError<TableGenError>

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

fn try_from(value: TypedInit<'a>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'a> Copy for Record<'a>

source§

impl<'a> Eq for Record<'a>

source§

impl<'a> StructuralEq for Record<'a>

source§

impl<'a> StructuralPartialEq for Record<'a>

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for Record<'a>

§

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

§

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

§

impl<'a> Unpin for Record<'a>

§

impl<'a> UnwindSafe for Record<'a>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

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

§

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 Twhere U: TryFrom<T>,

§

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.