pub struct ParameterInfo {
pub name: String,
pub rust_type: String,
pub is_optional: bool,
pub type_structure: TypeStructure,
pub serde_rename: Option<String>,
}Fields§
§name: String§rust_type: String§is_optional: bool§type_structure: TypeStructureStructured representation of the type for generators
serde_rename: Option<String>Serde rename attribute (optional, for future extensibility) Parameters are serialized following Tauri/JS conventions (camelCase)
Auto Trait Implementations§
impl Freeze for ParameterInfo
impl RefUnwindSafe for ParameterInfo
impl Send for ParameterInfo
impl Sync for ParameterInfo
impl Unpin for ParameterInfo
impl UnwindSafe for ParameterInfo
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