pub struct Variable {
pub result_type: Id,
pub id_result: Id,
pub storage_class: StorageClass,
}Expand description
Represents a variable.
Fields§
§result_type: IdThe resultant type Id of the variable.
id_result: IdThe Id of the variable.
storage_class: StorageClassThe storage class of the variable.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Variable
impl RefUnwindSafe for Variable
impl Send for Variable
impl Sync for Variable
impl Unpin for Variable
impl UnsafeUnpin for Variable
impl UnwindSafe for Variable
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