pub struct TerminalMemberVariable {
pub annotations: Option<Annotations>,
pub variable_name: String,
pub member_name: Option<String>,
pub variable_kind: String,
}Fields§
§annotations: Option<Annotations>§variable_name: String§member_name: Option<String>§variable_kind: StringTrait Implementations§
Source§impl Debug for TerminalMemberVariable
impl Debug for TerminalMemberVariable
Source§impl Default for TerminalMemberVariable
impl Default for TerminalMemberVariable
Source§fn default() -> TerminalMemberVariable
fn default() -> TerminalMemberVariable
Returns the “default value” for a type. Read more
Source§impl PartialEq for TerminalMemberVariable
impl PartialEq for TerminalMemberVariable
Source§impl<'__input> XmlRead<'__input> for TerminalMemberVariable
impl<'__input> XmlRead<'__input> for TerminalMemberVariable
Source§impl XmlWrite for TerminalMemberVariable
impl XmlWrite for TerminalMemberVariable
impl StructuralPartialEq for TerminalMemberVariable
Auto Trait Implementations§
impl Freeze for TerminalMemberVariable
impl RefUnwindSafe for TerminalMemberVariable
impl Send for TerminalMemberVariable
impl Sync for TerminalMemberVariable
impl Unpin for TerminalMemberVariable
impl UnwindSafe for TerminalMemberVariable
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