pub struct ChannelInfo {
pub parameter_name: String,
pub message_type: String,
pub command_name: String,
pub file_path: String,
pub line_number: usize,
pub serde_rename: Option<String>,
pub message_type_structure: TypeStructure,
}Fields§
§parameter_name: String§message_type: String§command_name: String§file_path: String§line_number: usize§serde_rename: Option<String>Serde rename attribute (optional, for future extensibility) Channel parameters are serialized following Tauri/JS conventions (camelCase)
message_type_structure: TypeStructureStructured representation of the message type for generators
Trait Implementations§
Source§impl Clone for ChannelInfo
impl Clone for ChannelInfo
Source§fn clone(&self) -> ChannelInfo
fn clone(&self) -> ChannelInfo
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 ChannelInfo
impl RefUnwindSafe for ChannelInfo
impl Send for ChannelInfo
impl Sync for ChannelInfo
impl Unpin for ChannelInfo
impl UnwindSafe for ChannelInfo
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