pub struct ParagraphList {
pub style: i64,
pub items: Vec<ListItem>,
}Fields§
§style: i64样式,1: 有序列表, 2: 无序列表
items: Vec<ListItem>列表项
Trait Implementations§
Source§impl Clone for ParagraphList
impl Clone for ParagraphList
Source§fn clone(&self) -> ParagraphList
fn clone(&self) -> ParagraphList
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 ParagraphList
impl Debug for ParagraphList
Source§impl Default for ParagraphList
impl Default for ParagraphList
Source§fn default() -> ParagraphList
fn default() -> ParagraphList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ParagraphList
impl<'de> Deserialize<'de> for ParagraphList
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
Source§impl PartialEq for ParagraphList
impl PartialEq for ParagraphList
Source§impl Serialize for ParagraphList
impl Serialize for ParagraphList
impl StructuralPartialEq for ParagraphList
Auto Trait Implementations§
impl Freeze for ParagraphList
impl RefUnwindSafe for ParagraphList
impl Send for ParagraphList
impl Sync for ParagraphList
impl Unpin for ParagraphList
impl UnsafeUnpin for ParagraphList
impl UnwindSafe for ParagraphList
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