pub enum SsEndpoint {
PostPaperBatch,
GetPaperTitle,
GetPaperDetails,
GetAuthorDetails,
GetReferencesOfAPaper(String),
GetCitationsOfAPaper(String),
}Variants§
PostPaperBatch
GetPaperTitle
GetPaperDetails
GetAuthorDetails
GetReferencesOfAPaper(String)
GetCitationsOfAPaper(String)
Trait Implementations§
Source§impl Clone for SsEndpoint
impl Clone for SsEndpoint
Source§fn clone(&self) -> SsEndpoint
fn clone(&self) -> SsEndpoint
Returns a copy 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 SsEndpoint
impl Debug for SsEndpoint
Source§impl Default for SsEndpoint
impl Default for SsEndpoint
Source§fn default() -> SsEndpoint
fn default() -> SsEndpoint
Returns the “default value” for a type. Read more
Source§impl PartialEq for SsEndpoint
impl PartialEq for SsEndpoint
impl StructuralPartialEq for SsEndpoint
Auto Trait Implementations§
impl Freeze for SsEndpoint
impl RefUnwindSafe for SsEndpoint
impl Send for SsEndpoint
impl Sync for SsEndpoint
impl Unpin for SsEndpoint
impl UnwindSafe for SsEndpoint
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