pub struct OffboardPreview {
pub owned: Box<OffboardAffectedPaths>,
pub executing_on_behalf: Box<OffboardAffectedPaths>,
pub referencing: Box<OffboardAffectedPaths>,
pub tokens: Vec<OffboardTokenInfo>,
pub http_triggers: i32,
pub email_triggers: i32,
}Fields§
§owned: Box<OffboardAffectedPaths>§executing_on_behalf: Box<OffboardAffectedPaths>§referencing: Box<OffboardAffectedPaths>§tokens: Vec<OffboardTokenInfo>Tokens owned by this user (will be deleted)
http_triggers: i32HTTP triggers under the user’s path (webhook URLs will change)
email_triggers: i32Email triggers under the user’s path (email addresses will change)
Implementations§
Source§impl OffboardPreview
impl OffboardPreview
pub fn new( owned: OffboardAffectedPaths, executing_on_behalf: OffboardAffectedPaths, referencing: OffboardAffectedPaths, tokens: Vec<OffboardTokenInfo>, http_triggers: i32, email_triggers: i32, ) -> OffboardPreview
Trait Implementations§
Source§impl Clone for OffboardPreview
impl Clone for OffboardPreview
Source§fn clone(&self) -> OffboardPreview
fn clone(&self) -> OffboardPreview
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 OffboardPreview
impl Debug for OffboardPreview
Source§impl Default for OffboardPreview
impl Default for OffboardPreview
Source§fn default() -> OffboardPreview
fn default() -> OffboardPreview
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OffboardPreview
impl<'de> Deserialize<'de> for OffboardPreview
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
Source§impl PartialEq for OffboardPreview
impl PartialEq for OffboardPreview
Source§impl Serialize for OffboardPreview
impl Serialize for OffboardPreview
impl StructuralPartialEq for OffboardPreview
Auto Trait Implementations§
impl Freeze for OffboardPreview
impl RefUnwindSafe for OffboardPreview
impl Send for OffboardPreview
impl Sync for OffboardPreview
impl Unpin for OffboardPreview
impl UnsafeUnpin for OffboardPreview
impl UnwindSafe for OffboardPreview
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