pub struct ClientInterest {
pub script_name: String,
pub inputs: HashMap<String, String>,
pub channel: Option<String>,
pub lifetime: Option<String>,
pub strict: Option<bool>,
}Fields§
§script_name: String§inputs: HashMap<String, String>§channel: Option<String>§lifetime: Option<String>§strict: Option<bool>Trait Implementations§
Source§impl Clone for ClientInterest
impl Clone for ClientInterest
Source§fn clone(&self) -> ClientInterest
fn clone(&self) -> ClientInterest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ClientInterest
impl Debug for ClientInterest
Source§impl<'de> Deserialize<'de> for ClientInterest
impl<'de> Deserialize<'de> for ClientInterest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ClientInterest
impl RefUnwindSafe for ClientInterest
impl Send for ClientInterest
impl Sync for ClientInterest
impl Unpin for ClientInterest
impl UnsafeUnpin for ClientInterest
impl UnwindSafe for ClientInterest
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