pub struct ExportOpts {
pub region: Region,
pub cell_width: f32,
pub cell_height: f32,
pub residue_font_size: u32,
pub ascent_corr: f32,
pub char_width: f32,
pub colormap: ResidueColorMap,
pub margin_x: f32,
pub margin_y: f32,
pub cell_frames: bool,
}Fields§
§region: Region§cell_width: f32§cell_height: f32§residue_font_size: u32§ascent_corr: f32§char_width: f32§colormap: ResidueColorMap§margin_x: f32§margin_y: f32§cell_frames: boolTrait Implementations§
Source§impl Clone for ExportOpts
impl Clone for ExportOpts
Source§fn clone(&self) -> ExportOpts
fn clone(&self) -> ExportOpts
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExportOpts
impl Debug for ExportOpts
Auto Trait Implementations§
impl Freeze for ExportOpts
impl RefUnwindSafe for ExportOpts
impl Send for ExportOpts
impl Sync for ExportOpts
impl Unpin for ExportOpts
impl UnsafeUnpin for ExportOpts
impl UnwindSafe for ExportOpts
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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