pub struct TerminalStreamMemberVariable {
pub annotations: Option<Annotations>,
pub in_stream_member_name: String,
pub out_stream_member_name: String,
pub in_stream_variable_name: String,
pub out_stream_variable_name: String,
}Fields§
§annotations: Option<Annotations>§in_stream_member_name: String§out_stream_member_name: String§in_stream_variable_name: String§out_stream_variable_name: StringTrait Implementations§
Source§impl Debug for TerminalStreamMemberVariable
impl Debug for TerminalStreamMemberVariable
Source§impl Default for TerminalStreamMemberVariable
impl Default for TerminalStreamMemberVariable
Source§fn default() -> TerminalStreamMemberVariable
fn default() -> TerminalStreamMemberVariable
Returns the “default value” for a type. Read more
Source§impl PartialEq for TerminalStreamMemberVariable
impl PartialEq for TerminalStreamMemberVariable
Source§fn eq(&self, other: &TerminalStreamMemberVariable) -> bool
fn eq(&self, other: &TerminalStreamMemberVariable) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'__input> XmlRead<'__input> for TerminalStreamMemberVariable
impl<'__input> XmlRead<'__input> for TerminalStreamMemberVariable
impl StructuralPartialEq for TerminalStreamMemberVariable
Auto Trait Implementations§
impl Freeze for TerminalStreamMemberVariable
impl RefUnwindSafe for TerminalStreamMemberVariable
impl Send for TerminalStreamMemberVariable
impl Sync for TerminalStreamMemberVariable
impl Unpin for TerminalStreamMemberVariable
impl UnwindSafe for TerminalStreamMemberVariable
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