pub struct SupportBootstrap {
pub schema_version: u32,
pub project_id: String,
pub portal_origin: String,
pub label: String,
pub brand: String,
pub enabled_surfaces: Vec<SupportSurface>,
pub screenshot_enabled: bool,
pub voice_enabled: bool,
pub file_enabled: bool,
pub attachment_limits: AttachmentLimits,
pub recording_limit: u64,
pub privacy_notice: String,
}Fields§
§schema_version: u32§project_id: String§portal_origin: String§label: String§brand: String§enabled_surfaces: Vec<SupportSurface>§screenshot_enabled: bool§voice_enabled: bool§file_enabled: bool§attachment_limits: AttachmentLimits§recording_limit: u64§privacy_notice: StringTrait Implementations§
Source§impl Clone for SupportBootstrap
impl Clone for SupportBootstrap
Source§fn clone(&self) -> SupportBootstrap
fn clone(&self) -> SupportBootstrap
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 SupportBootstrap
impl Debug for SupportBootstrap
Source§impl<'de> Deserialize<'de> for SupportBootstrap
impl<'de> Deserialize<'de> for SupportBootstrap
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
impl Eq for SupportBootstrap
Source§impl PartialEq for SupportBootstrap
impl PartialEq for SupportBootstrap
Source§impl Serialize for SupportBootstrap
impl Serialize for SupportBootstrap
impl StructuralPartialEq for SupportBootstrap
Auto Trait Implementations§
impl Freeze for SupportBootstrap
impl RefUnwindSafe for SupportBootstrap
impl Send for SupportBootstrap
impl Sync for SupportBootstrap
impl Unpin for SupportBootstrap
impl UnsafeUnpin for SupportBootstrap
impl UnwindSafe for SupportBootstrap
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.