pub struct ProfileUpdate {
pub name: Option<String>,
pub paused: Option<bool>,
pub blocked_applications: Option<Vec<String>>,
pub dns_policies: Option<DnsPoliciesUpdate>,
pub schedule: Option<ProfileScheduleUpdate>,
}Fields§
§name: Option<String>§paused: Option<bool>§blocked_applications: Option<Vec<String>>§dns_policies: Option<DnsPoliciesUpdate>§schedule: Option<ProfileScheduleUpdate>Trait Implementations§
Source§impl Clone for ProfileUpdate
impl Clone for ProfileUpdate
Source§fn clone(&self) -> ProfileUpdate
fn clone(&self) -> ProfileUpdate
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 moreSource§impl Debug for ProfileUpdate
impl Debug for ProfileUpdate
Source§impl Default for ProfileUpdate
impl Default for ProfileUpdate
Source§fn default() -> ProfileUpdate
fn default() -> ProfileUpdate
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ProfileUpdate
impl RefUnwindSafe for ProfileUpdate
impl Send for ProfileUpdate
impl Sync for ProfileUpdate
impl Unpin for ProfileUpdate
impl UnsafeUnpin for ProfileUpdate
impl UnwindSafe for ProfileUpdate
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