pub struct AsksWebPageUpdateInput {
pub title: Option<String>,
pub description: Option<String>,
pub issue_created_auto_reply: Option<String>,
pub issue_created_auto_reply_enabled: Option<bool>,
pub issue_completed_auto_reply: Option<String>,
pub issue_completed_auto_reply_enabled: Option<bool>,
pub issue_canceled_auto_reply: Option<String>,
pub issue_canceled_auto_reply_enabled: Option<bool>,
}Fields§
§title: Option<String>The title of the page.
description: Option<String>The description of the page.
issue_created_auto_reply: Option<String>The auto-reply message for issue created. If not set, the default reply will be used.
issue_created_auto_reply_enabled: Option<bool>Whether the auto-reply for issue created is enabled.
issue_completed_auto_reply: Option<String>The auto-reply message for issue completed. If not set, the default reply will be used.
issue_completed_auto_reply_enabled: Option<bool>Whether the auto-reply for issue completed is enabled.
issue_canceled_auto_reply: Option<String>The auto-reply message for issue canceled. If not set, the default reply will be used.
issue_canceled_auto_reply_enabled: Option<bool>Whether the auto-reply for issue canceled is enabled.
Trait Implementations§
Source§impl Clone for AsksWebPageUpdateInput
impl Clone for AsksWebPageUpdateInput
Source§fn clone(&self) -> AsksWebPageUpdateInput
fn clone(&self) -> AsksWebPageUpdateInput
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 AsksWebPageUpdateInput
impl Debug for AsksWebPageUpdateInput
Source§impl Default for AsksWebPageUpdateInput
impl Default for AsksWebPageUpdateInput
Source§fn default() -> AsksWebPageUpdateInput
fn default() -> AsksWebPageUpdateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AsksWebPageUpdateInput
impl<'de> Deserialize<'de> for AsksWebPageUpdateInput
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 AsksWebPageUpdateInput
impl RefUnwindSafe for AsksWebPageUpdateInput
impl Send for AsksWebPageUpdateInput
impl Sync for AsksWebPageUpdateInput
impl Unpin for AsksWebPageUpdateInput
impl UnwindSafe for AsksWebPageUpdateInput
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