pub struct ChartInfo {
pub chart_id: String,
pub left_id: i64,
pub right_id: i64,
pub more_data: bool,
pub ready: bool,
pub view_width: usize,
}Expand description
Chart 信息
Fields§
§chart_id: String§left_id: i64§right_id: i64§more_data: bool§ready: bool§view_width: usizeTrait Implementations§
Source§impl<'de> Deserialize<'de> for ChartInfo
impl<'de> Deserialize<'de> for ChartInfo
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 ChartInfo
impl RefUnwindSafe for ChartInfo
impl Send for ChartInfo
impl Sync for ChartInfo
impl Unpin for ChartInfo
impl UnwindSafe for ChartInfo
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