pub struct UpdateReplyResponse {
pub reply: UpdatedReply,
}Expand description
更新回复的内容响应
Fields§
§reply: UpdatedReply更新后的回复信息
Implementations§
Source§impl UpdateReplyResponse
impl UpdateReplyResponse
Sourcepub fn get_text_content(&self) -> String
pub fn get_text_content(&self) -> String
获取回复的文本内容
Sourcepub fn is_updated(&self) -> bool
pub fn is_updated(&self) -> bool
是否已更新
Sourcepub fn create_time(&self) -> i64
pub fn create_time(&self) -> i64
获取创建时间
Sourcepub fn update_time(&self) -> i64
pub fn update_time(&self) -> i64
获取更新时间
Sourcepub fn update_summary(&self) -> String
pub fn update_summary(&self) -> String
获取更新摘要
Trait Implementations§
Source§impl ApiResponseTrait for UpdateReplyResponse
impl ApiResponseTrait for UpdateReplyResponse
Source§fn data_format() -> ResponseFormat
fn data_format() -> ResponseFormat
是否是标准数据格式, 既是用data包裹数据
fn from_binary(_file_name: String, _body: Vec<u8>) -> Option<Self>
Source§impl Debug for UpdateReplyResponse
impl Debug for UpdateReplyResponse
Source§impl<'de> Deserialize<'de> for UpdateReplyResponse
impl<'de> Deserialize<'de> for UpdateReplyResponse
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 UpdateReplyResponse
impl RefUnwindSafe for UpdateReplyResponse
impl Send for UpdateReplyResponse
impl Sync for UpdateReplyResponse
impl Unpin for UpdateReplyResponse
impl UnwindSafe for UpdateReplyResponse
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