UnionField

Struct UnionField 

Source
pub struct UnionField { /* private fields */ }
Expand description

Info about a field on a union Type. Separate from a normal Field due to the unsafety of accessing/setting union fields. Allows getting a reference to or setting the content of this field on a Value, assuming the reflection was configured to allow it.

Implementations§

Source§

impl UnionField

Source

pub unsafe fn new( get_ptr: Option<for<'a, 'b> fn(&'a Value<'b>) -> Value<'a>>, set_ptr: Option<fn(&mut Value<'_>, Value<'static>)>, name: &'static str, assoc_ty: Type, field_ty: Type, ) -> UnionField

Internal Function, used to create a new union field

§Safety

Should only be called within a ReflectedUnion’s fields implementation

Source

pub fn name(&self) -> &'static str

Get the name of this field

Source

pub fn assoc_ty(&self) -> Type

Get the Type this field is defined on

Source

pub fn ty(&self) -> Type

Get the Type of the data in this field

Source

pub unsafe fn get_ref<'a>( &self, this: &'a Value<'a>, ) -> Result<Value<'a>, Error>

Get a reference to the data contained within this field on a Value, assuming the Value is of the correct type and the operation is supported.

§Safety

This is unsafe for the same reason accessing a field on a union normally is, and assumes that the union content can be correctly interpreted as a value of this type.

Source

pub unsafe fn set( &self, this: &mut Value<'_>, other: Value<'static>, ) -> Result<(), Error>

Set the data contained within this Field on a Value, assuming the Values of both this and other are of the correct type and the operation is supported.

§Safety

This is unsafe for the same reason setting a non-Copy field on a union normally is, reading the field may require the union content be read as a value of the type being set.

Auto Trait Implementations§

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.