pub struct EntrypointConfig {
pub name: &'static str,
pub checkpointer: Option<&'static str>,
}Expand description
Configuration for an #[entrypoint]-decorated function.
Fields§
§name: &'static str§checkpointer: Option<&'static str>Trait Implementations§
Source§impl Clone for EntrypointConfig
impl Clone for EntrypointConfig
Source§fn clone(&self) -> EntrypointConfig
fn clone(&self) -> EntrypointConfig
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 moreAuto Trait Implementations§
impl Freeze for EntrypointConfig
impl RefUnwindSafe for EntrypointConfig
impl Send for EntrypointConfig
impl Sync for EntrypointConfig
impl Unpin for EntrypointConfig
impl UnsafeUnpin for EntrypointConfig
impl UnwindSafe for EntrypointConfig
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