pub enum CodeExecutableCodeDependents {
CodeChunk(CodeChunk),
CodeExpression(CodeExpression),
}
Expand description
Types permitted for the codeDependents
property of a CodeExecutable
node.
Variants§
CodeChunk(CodeChunk)
CodeExpression(CodeExpression)
Trait Implementations§
Source§impl AsRef<str> for CodeExecutableCodeDependents
impl AsRef<str> for CodeExecutableCodeDependents
Source§impl Clone for CodeExecutableCodeDependents
impl Clone for CodeExecutableCodeDependents
Source§fn clone(&self) -> CodeExecutableCodeDependents
fn clone(&self) -> CodeExecutableCodeDependents
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 CodeExecutableCodeDependents
impl Debug for CodeExecutableCodeDependents
Source§impl<'de> Deserialize<'de> for CodeExecutableCodeDependents
impl<'de> Deserialize<'de> for CodeExecutableCodeDependents
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 CodeExecutableCodeDependents
impl RefUnwindSafe for CodeExecutableCodeDependents
impl Send for CodeExecutableCodeDependents
impl Sync for CodeExecutableCodeDependents
impl Unpin for CodeExecutableCodeDependents
impl UnwindSafe for CodeExecutableCodeDependents
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