pub enum FunctionResultContentResult {
StructResult(Struct),
ContentList(FunctionResultSubcontentList),
StringResult(String),
}Expand description
The result oneof of FunctionResultContent, as an owned value.
Variants§
Trait Implementations§
Source§impl Clone for FunctionResultContentResult
impl Clone for FunctionResultContentResult
Source§fn clone(&self) -> FunctionResultContentResult
fn clone(&self) -> FunctionResultContentResult
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 FunctionResultContentResult
impl Debug for FunctionResultContentResult
impl StructuralPartialEq for FunctionResultContentResult
Auto Trait Implementations§
impl Freeze for FunctionResultContentResult
impl RefUnwindSafe for FunctionResultContentResult
impl Send for FunctionResultContentResult
impl Sync for FunctionResultContentResult
impl Unpin for FunctionResultContentResult
impl UnsafeUnpin for FunctionResultContentResult
impl UnwindSafe for FunctionResultContentResult
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