pub enum MinutesApiV1 {
Get(String),
Subscription,
Unsubscription,
MediaGet(String),
TranscriptGet(String),
StatisticsGet(String),
}Expand description
Minutes API V1 端点枚举
Variants§
Get(String)
获取妙记信息
Subscription
订阅妙记变更事件
Unsubscription
取消订阅妙记变更事件
MediaGet(String)
下载妙记音视频文件
TranscriptGet(String)
导出妙记文字记录
StatisticsGet(String)
获取妙记统计数据
Implementations§
Trait Implementations§
Source§impl Clone for MinutesApiV1
impl Clone for MinutesApiV1
Source§fn clone(&self) -> MinutesApiV1
fn clone(&self) -> MinutesApiV1
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MinutesApiV1
impl Debug for MinutesApiV1
Source§impl PartialEq for MinutesApiV1
impl PartialEq for MinutesApiV1
Source§fn eq(&self, other: &MinutesApiV1) -> bool
fn eq(&self, other: &MinutesApiV1) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MinutesApiV1
Auto Trait Implementations§
impl Freeze for MinutesApiV1
impl RefUnwindSafe for MinutesApiV1
impl Send for MinutesApiV1
impl Sync for MinutesApiV1
impl Unpin for MinutesApiV1
impl UnsafeUnpin for MinutesApiV1
impl UnwindSafe for MinutesApiV1
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