pub enum LingoApiV1 {
Show 22 variants
DraftCreate,
DraftUpdate(String),
EntityCreate,
EntityUpdate(String),
EntityDelete(String),
EntityGet(String),
EntityList,
EntityMatch,
EntitySearch,
EntityHighlight,
EntityBatchGet,
EntityBatchUpdate,
EntitySearchRecommend,
EntityHistoryGet(String),
EntityHistoryList,
ClassificationList,
RepoList,
FileUpload,
FileDownload(String),
GenerateSummary,
ExtractKeywords,
TranslateText,
}Expand description
Lingo语言服务 API v1 端点
Variants§
DraftCreate
草稿管理
DraftUpdate(String)
公开项说明。
EntityCreate
词条管理
EntityUpdate(String)
公开项说明。
EntityDelete(String)
公开项说明。
EntityGet(String)
公开项说明。
EntityList
公开项说明。
EntityMatch
公开项说明。
EntitySearch
公开项说明。
EntityHighlight
公开项说明。
EntityBatchGet
公开项说明。
EntityBatchUpdate
公开项说明。
EntitySearchRecommend
公开项说明。
EntityHistoryGet(String)
公开项说明。
EntityHistoryList
公开项说明。
ClassificationList
分类管理
RepoList
词库管理
FileUpload
文件管理
FileDownload(String)
公开项说明。
GenerateSummary
智能处理
ExtractKeywords
公开项说明。
TranslateText
公开项说明。
Implementations§
Trait Implementations§
Source§impl Clone for LingoApiV1
impl Clone for LingoApiV1
Source§fn clone(&self) -> LingoApiV1
fn clone(&self) -> LingoApiV1
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 LingoApiV1
impl Debug for LingoApiV1
Source§impl PartialEq for LingoApiV1
impl PartialEq for LingoApiV1
Source§fn eq(&self, other: &LingoApiV1) -> bool
fn eq(&self, other: &LingoApiV1) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LingoApiV1
Auto Trait Implementations§
impl Freeze for LingoApiV1
impl RefUnwindSafe for LingoApiV1
impl Send for LingoApiV1
impl Sync for LingoApiV1
impl Unpin for LingoApiV1
impl UnsafeUnpin for LingoApiV1
impl UnwindSafe for LingoApiV1
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