pub struct SbmlTransitionInput {
pub id: Option<String>,
pub qual_species: String,
pub transition_effect: Option<String>,
pub sign: Option<String>,
pub essential: Option<bool>,
}
Expand description
Maps almost directly to the SBML transition input tag.
Fields
id: Option<String>
qual_species: String
transition_effect: Option<String>
sign: Option<String>
essential: Option<bool>
Trait Implementations
sourceimpl Clone for SbmlTransitionInput
impl Clone for SbmlTransitionInput
sourcefn clone(&self) -> SbmlTransitionInput
fn clone(&self) -> SbmlTransitionInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SbmlTransitionInput
impl Debug for SbmlTransitionInput
sourceimpl PartialEq<SbmlTransitionInput> for SbmlTransitionInput
impl PartialEq<SbmlTransitionInput> for SbmlTransitionInput
sourcefn eq(&self, other: &SbmlTransitionInput) -> bool
fn eq(&self, other: &SbmlTransitionInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SbmlTransitionInput) -> bool
fn ne(&self, other: &SbmlTransitionInput) -> bool
This method tests for !=
.
impl Eq for SbmlTransitionInput
impl StructuralEq for SbmlTransitionInput
impl StructuralPartialEq for SbmlTransitionInput
Auto Trait Implementations
impl RefUnwindSafe for SbmlTransitionInput
impl Send for SbmlTransitionInput
impl Sync for SbmlTransitionInput
impl Unpin for SbmlTransitionInput
impl UnwindSafe for SbmlTransitionInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more