pub struct DisorderPrediction {
pub scores: Vec<f64>,
pub disordered: Vec<bool>,
pub disorder_fraction: f64,
}Expand description
Result of intrinsic disorder prediction.
Fields§
§scores: Vec<f64>Per-residue disorder score (0.0–1.0).
disordered: Vec<bool>Per-residue disorder call (true if score > 0.5).
disorder_fraction: f64Fraction of residues predicted as disordered.
Trait Implementations§
Source§impl Clone for DisorderPrediction
impl Clone for DisorderPrediction
Source§fn clone(&self) -> DisorderPrediction
fn clone(&self) -> DisorderPrediction
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DisorderPrediction
impl RefUnwindSafe for DisorderPrediction
impl Send for DisorderPrediction
impl Sync for DisorderPrediction
impl Unpin for DisorderPrediction
impl UnsafeUnpin for DisorderPrediction
impl UnwindSafe for DisorderPrediction
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