pub struct CodeOutput {
pub values: Vec<OutputValue>,
}
Fields§
§values: Vec<OutputValue>
Trait Implementations§
Source§impl Clone for CodeOutput
impl Clone for CodeOutput
Source§fn clone(&self) -> CodeOutput
fn clone(&self) -> CodeOutput
Returns a copy 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 CodeOutput
impl Debug for CodeOutput
Source§impl Default for CodeOutput
impl Default for CodeOutput
Source§fn default() -> CodeOutput
fn default() -> CodeOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CodeOutput
impl<'de> Deserialize<'de> for CodeOutput
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 From<Vec<CellOutput>> for CodeOutput
impl From<Vec<CellOutput>> for CodeOutput
Source§fn from(value: Vec<CellOutput>) -> Self
fn from(value: Vec<CellOutput>) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CodeOutput
impl PartialEq for CodeOutput
Source§impl Serialize for CodeOutput
impl Serialize for CodeOutput
impl StructuralPartialEq for CodeOutput
Auto Trait Implementations§
impl Freeze for CodeOutput
impl RefUnwindSafe for CodeOutput
impl Send for CodeOutput
impl Sync for CodeOutput
impl Unpin for CodeOutput
impl UnwindSafe for CodeOutput
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