pub trait WisprExt {
Show 22 methods
// Required methods
fn get_wispr_location_id(&self) -> Option<String>;
fn set_wispr_location_id(&mut self, value: impl Into<String>);
fn get_wispr_location_name(&self) -> Option<String>;
fn set_wispr_location_name(&mut self, value: impl Into<String>);
fn get_wispr_logoff_url(&self) -> Option<String>;
fn set_wispr_logoff_url(&mut self, value: impl Into<String>);
fn get_wispr_redirection_url(&self) -> Option<String>;
fn set_wispr_redirection_url(&mut self, value: impl Into<String>);
fn get_wispr_bandwidth_min_up(&self) -> Option<u32>;
fn set_wispr_bandwidth_min_up(&mut self, value: u32);
fn get_wispr_bandwidth_min_down(&self) -> Option<u32>;
fn set_wispr_bandwidth_min_down(&mut self, value: u32);
fn get_wispr_bandwidth_max_up(&self) -> Option<u32>;
fn set_wispr_bandwidth_max_up(&mut self, value: u32);
fn get_wispr_bandwidth_max_down(&self) -> Option<u32>;
fn set_wispr_bandwidth_max_down(&mut self, value: u32);
fn get_wispr_session_terminate_time(&self) -> Option<String>;
fn set_wispr_session_terminate_time(&mut self, value: impl Into<String>);
fn get_wispr_session_terminate_end_of_day(&self) -> Option<String>;
fn set_wispr_session_terminate_end_of_day(
&mut self,
value: impl Into<String>,
);
fn get_wispr_billing_class_of_service(&self) -> Option<String>;
fn set_wispr_billing_class_of_service(&mut self, value: impl Into<String>);
}Required Methods§
fn get_wispr_location_id(&self) -> Option<String>
fn set_wispr_location_id(&mut self, value: impl Into<String>)
fn get_wispr_location_name(&self) -> Option<String>
fn set_wispr_location_name(&mut self, value: impl Into<String>)
fn get_wispr_logoff_url(&self) -> Option<String>
fn set_wispr_logoff_url(&mut self, value: impl Into<String>)
fn get_wispr_redirection_url(&self) -> Option<String>
fn set_wispr_redirection_url(&mut self, value: impl Into<String>)
fn get_wispr_bandwidth_min_up(&self) -> Option<u32>
fn set_wispr_bandwidth_min_up(&mut self, value: u32)
fn get_wispr_bandwidth_min_down(&self) -> Option<u32>
fn set_wispr_bandwidth_min_down(&mut self, value: u32)
fn get_wispr_bandwidth_max_up(&self) -> Option<u32>
fn set_wispr_bandwidth_max_up(&mut self, value: u32)
fn get_wispr_bandwidth_max_down(&self) -> Option<u32>
fn set_wispr_bandwidth_max_down(&mut self, value: u32)
fn get_wispr_session_terminate_time(&self) -> Option<String>
fn set_wispr_session_terminate_time(&mut self, value: impl Into<String>)
fn get_wispr_session_terminate_end_of_day(&self) -> Option<String>
fn set_wispr_session_terminate_end_of_day(&mut self, value: impl Into<String>)
fn get_wispr_billing_class_of_service(&self) -> Option<String>
fn set_wispr_billing_class_of_service(&mut self, value: impl Into<String>)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.