pub struct EntrypointSchema {
pub params: Vec<EntrypointParam>,
}Expand description
Parsed schema for a direct return function(...) ... end chunk.
Fields§
§params: Vec<EntrypointParam>Ordered parameter list for the returned function literal.
Trait Implementations§
Source§impl Clone for EntrypointSchema
impl Clone for EntrypointSchema
Source§fn clone(&self) -> EntrypointSchema
fn clone(&self) -> EntrypointSchema
Returns a duplicate 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 EntrypointSchema
impl Debug for EntrypointSchema
Source§impl Default for EntrypointSchema
impl Default for EntrypointSchema
Source§fn default() -> EntrypointSchema
fn default() -> EntrypointSchema
Returns the “default value” for a type. Read more
Source§impl PartialEq for EntrypointSchema
impl PartialEq for EntrypointSchema
impl Eq for EntrypointSchema
impl StructuralPartialEq for EntrypointSchema
Auto Trait Implementations§
impl Freeze for EntrypointSchema
impl RefUnwindSafe for EntrypointSchema
impl Send for EntrypointSchema
impl Sync for EntrypointSchema
impl Unpin for EntrypointSchema
impl UnsafeUnpin for EntrypointSchema
impl UnwindSafe for EntrypointSchema
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