pub enum LambdaName {
Name(String),
Qualified {
name: String,
qualifier: String,
},
}Expand description
Identifier for a Lambda function
Variants§
Trait Implementations§
Source§impl From<&str> for LambdaName
impl From<&str> for LambdaName
Auto Trait Implementations§
impl Freeze for LambdaName
impl RefUnwindSafe for LambdaName
impl Send for LambdaName
impl Sync for LambdaName
impl Unpin for LambdaName
impl UnwindSafe for LambdaName
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