pub struct SubscribeFileEventsRespData {
pub subscription_id: String,
pub subscription_type: String,
}Expand description
订阅云文档事件响应数据
Fields§
§subscription_id: String订阅ID
subscription_type: String订阅类型
Trait Implementations§
Source§impl ApiResponseTrait for SubscribeFileEventsRespData
impl ApiResponseTrait for SubscribeFileEventsRespData
Source§fn data_format() -> ResponseFormat
fn data_format() -> ResponseFormat
是否是标准数据格式, 既是用data包裹数据
fn from_binary(_file_name: String, _body: Vec<u8>) -> Option<Self>
Source§impl Clone for SubscribeFileEventsRespData
impl Clone for SubscribeFileEventsRespData
Source§fn clone(&self) -> SubscribeFileEventsRespData
fn clone(&self) -> SubscribeFileEventsRespData
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 SubscribeFileEventsRespData
impl Debug for SubscribeFileEventsRespData
Source§impl<'de> Deserialize<'de> for SubscribeFileEventsRespData
impl<'de> Deserialize<'de> for SubscribeFileEventsRespData
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 SubscribeFileEventsRespData
impl RefUnwindSafe for SubscribeFileEventsRespData
impl Send for SubscribeFileEventsRespData
impl Sync for SubscribeFileEventsRespData
impl Unpin for SubscribeFileEventsRespData
impl UnwindSafe for SubscribeFileEventsRespData
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