pub struct Variable<'a> {
pub display_name: &'a str,
pub type_of: TypeOf<'a>,
pub functions: Function<'a>,
}Expand description
The GoaT variable of interest.
Fields§
§display_name: &'a str§type_of: TypeOf<'a>§functions: Function<'a>Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Variable<'a>
impl<'a> RefUnwindSafe for Variable<'a>
impl<'a> Send for Variable<'a>
impl<'a> Sync for Variable<'a>
impl<'a> Unpin for Variable<'a>
impl<'a> UnwindSafe for Variable<'a>
Blanket Implementations§
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
Mutably borrows from an owned value. Read more