#[non_exhaustive]pub enum GeneratedEntrypoint {
List(Vec<GeneratedString>),
String(GeneratedString),
Empty,
}Expand description
Compose entrypoint form selected for a generated service.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
List(Vec<GeneratedString>)
Emit an exact entrypoint list in authored argument order.
String(GeneratedString)
Emit the short scalar string form.
Empty
Explicitly clear the entrypoint declared by the image.
Trait Implementations§
Source§impl Clone for GeneratedEntrypoint
impl Clone for GeneratedEntrypoint
Source§fn clone(&self) -> GeneratedEntrypoint
fn clone(&self) -> GeneratedEntrypoint
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 GeneratedEntrypoint
impl Debug for GeneratedEntrypoint
impl Eq for GeneratedEntrypoint
Source§impl PartialEq for GeneratedEntrypoint
impl PartialEq for GeneratedEntrypoint
impl StructuralPartialEq for GeneratedEntrypoint
Auto Trait Implementations§
impl Freeze for GeneratedEntrypoint
impl RefUnwindSafe for GeneratedEntrypoint
impl Send for GeneratedEntrypoint
impl Sync for GeneratedEntrypoint
impl Unpin for GeneratedEntrypoint
impl UnsafeUnpin for GeneratedEntrypoint
impl UnwindSafe for GeneratedEntrypoint
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