pub struct GnuplotAxis { /* private fields */ }Expand description
For labeling the gnuplot plots axis
Implementations§
Source§impl GnuplotAxis
impl GnuplotAxis
Sourcepub fn set_rotation(&mut self, rotation_degrees: f32)
pub fn set_rotation(&mut self, rotation_degrees: f32)
Set the rotation value. Tics will be displayed rotated to the right by the requested amount
Sourcepub fn from_labels(labels: Vec<String>) -> Self
pub fn from_labels(labels: Vec<String>) -> Self
Create new GnuplotAxis::Labels
- Vector contains labels used for axis
Sourcepub fn from_slice(labels: &[&str]) -> Self
pub fn from_slice(labels: &[&str]) -> Self
Similar to from_labels
- Slice of slice is converted to Vector of Strings and
Self::from_labels(vec)is called
Trait Implementations§
Source§impl Clone for GnuplotAxis
impl Clone for GnuplotAxis
Source§fn clone(&self) -> GnuplotAxis
fn clone(&self) -> GnuplotAxis
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 GnuplotAxis
impl Debug for GnuplotAxis
Source§impl<'de> Deserialize<'de> for GnuplotAxis
impl<'de> Deserialize<'de> for GnuplotAxis
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GnuplotAxis
impl RefUnwindSafe for GnuplotAxis
impl Send for GnuplotAxis
impl Sync for GnuplotAxis
impl Unpin for GnuplotAxis
impl UnsafeUnpin for GnuplotAxis
impl UnwindSafe for GnuplotAxis
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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