Struct annotate_snippets::display_list::DisplayList
[−]
[src]
pub struct DisplayList { pub body: Vec<DisplayLine>, }
List of lines to be displayed.
Fields
body: Vec<DisplayLine>
Trait Implementations
impl From<Snippet> for DisplayList
[src]
impl Debug for DisplayList
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl Clone for DisplayList
[src]
fn clone(&self) -> DisplayList
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl PartialEq for DisplayList
[src]
fn eq(&self, __arg_0: &DisplayList) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &DisplayList) -> bool
[src]
This method tests for !=
.
impl From<Vec<DisplayLine>> for DisplayList
[src]
fn from(body: Vec<DisplayLine>) -> Self
[src]
Performs the conversion.