pub struct AdaFunction {
pub name: String,
pub parameters: Vec<AdaParameter>,
pub return_type: String,
}Expand description
Ada 函数声明。
Fields§
§name: String函数名。
parameters: Vec<AdaParameter>参数列表。
return_type: String返回类型。
Implementations§
Source§impl AdaFunction
impl AdaFunction
Trait Implementations§
Source§impl Clone for AdaFunction
impl Clone for AdaFunction
Source§fn clone(&self) -> AdaFunction
fn clone(&self) -> AdaFunction
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 AdaFunction
impl Debug for AdaFunction
Source§impl PartialEq for AdaFunction
impl PartialEq for AdaFunction
impl Eq for AdaFunction
impl StructuralPartialEq for AdaFunction
Auto Trait Implementations§
impl Freeze for AdaFunction
impl RefUnwindSafe for AdaFunction
impl Send for AdaFunction
impl Sync for AdaFunction
impl Unpin for AdaFunction
impl UnsafeUnpin for AdaFunction
impl UnwindSafe for AdaFunction
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