pub struct ShFn {
pub name: String,
pub args: Vec<ShFnArg>,
pub ret: String,
pub block: Option<ShBlock>,
}
Fields§
§name: String
§args: Vec<ShFnArg>
§ret: String
§block: Option<ShBlock>
Implementations§
Trait Implementations§
impl StructuralPartialEq for ShFn
Auto Trait Implementations§
impl Freeze for ShFn
impl RefUnwindSafe for ShFn
impl Send for ShFn
impl Sync for ShFn
impl Unpin for ShFn
impl UnwindSafe for ShFn
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