pub struct VariableAlias {
pub name: String,
pub description: Option<String>,
}Expand description
Base type for variable aliases
Fields§
§name: String§description: Option<String>Trait Implementations§
Source§impl Debug for VariableAlias
impl Debug for VariableAlias
Source§impl Default for VariableAlias
impl Default for VariableAlias
Source§fn default() -> VariableAlias
fn default() -> VariableAlias
Returns the “default value” for a type. Read more
Source§impl PartialEq for VariableAlias
impl PartialEq for VariableAlias
Source§impl<'__input> XmlRead<'__input> for VariableAlias
impl<'__input> XmlRead<'__input> for VariableAlias
Source§impl XmlWrite for VariableAlias
impl XmlWrite for VariableAlias
impl StructuralPartialEq for VariableAlias
Auto Trait Implementations§
impl Freeze for VariableAlias
impl RefUnwindSafe for VariableAlias
impl Send for VariableAlias
impl Sync for VariableAlias
impl Unpin for VariableAlias
impl UnwindSafe for VariableAlias
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more