pub struct LookBusyConfiguration {
pub enabled: Option<bool>,
pub look_busy_percentage: Option<f64>,
}Available on crate feature
calendars only.Expand description
LookBusyConfiguration from the GoHighLevel OpenAPI spec.
Fields§
§enabled: Option<bool>Apply Look Busy Required by the API. (Optional here so responses that omit it still parse.)
look_busy_percentage: Option<f64>Percentage of slots that will be hidden Required by the API. (Optional here so responses that omit it still parse.)
Trait Implementations§
Source§impl Clone for LookBusyConfiguration
impl Clone for LookBusyConfiguration
Source§fn clone(&self) -> LookBusyConfiguration
fn clone(&self) -> LookBusyConfiguration
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 LookBusyConfiguration
impl Debug for LookBusyConfiguration
Source§impl Default for LookBusyConfiguration
impl Default for LookBusyConfiguration
Source§fn default() -> LookBusyConfiguration
fn default() -> LookBusyConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LookBusyConfiguration
impl<'de> Deserialize<'de> for LookBusyConfiguration
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 LookBusyConfiguration
impl RefUnwindSafe for LookBusyConfiguration
impl Send for LookBusyConfiguration
impl Sync for LookBusyConfiguration
impl Unpin for LookBusyConfiguration
impl UnsafeUnpin for LookBusyConfiguration
impl UnwindSafe for LookBusyConfiguration
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