pub struct ResolvedParam {
pub name: String,
pub field_name: String,
pub lang_type: String,
pub full_type: String,
pub borrowed_type: String,
pub neutral_type: String,
pub nullable: bool,
}Expand description
A parameter with its type resolved to the target language.
Fields§
§name: String§field_name: String§lang_type: String§full_type: String§borrowed_type: String§neutral_type: String§nullable: boolTrait Implementations§
Source§impl Clone for ResolvedParam
impl Clone for ResolvedParam
Source§fn clone(&self) -> ResolvedParam
fn clone(&self) -> ResolvedParam
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 ResolvedParam
impl RefUnwindSafe for ResolvedParam
impl Send for ResolvedParam
impl Sync for ResolvedParam
impl Unpin for ResolvedParam
impl UnsafeUnpin for ResolvedParam
impl UnwindSafe for ResolvedParam
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