pub struct ChartStyle {
pub layout: LayoutStyle,
pub candles: CandleStyle,
pub volume: VolumeStyle,
pub current_price: CurrentPriceStyle,
}Fields§
§layout: LayoutStyle§candles: CandleStyle§volume: VolumeStyle§current_price: CurrentPriceStyleTrait Implementations§
Source§impl Clone for ChartStyle
impl Clone for ChartStyle
Source§fn clone(&self) -> ChartStyle
fn clone(&self) -> ChartStyle
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 moreSource§impl Debug for ChartStyle
impl Debug for ChartStyle
Source§impl Default for ChartStyle
impl Default for ChartStyle
Source§fn default() -> ChartStyle
fn default() -> ChartStyle
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ChartStyle
impl<'de> Deserialize<'de> for ChartStyle
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 ChartStyle
impl RefUnwindSafe for ChartStyle
impl Send for ChartStyle
impl Sync for ChartStyle
impl Unpin for ChartStyle
impl UnsafeUnpin for ChartStyle
impl UnwindSafe for ChartStyle
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