pub struct NaverTrend {
pub client: Client,
}Fields§
§client: ClientImplementations§
Sourcepub fn get(&self, symbol: impl Into<String>) -> Result<Value>
pub fn get(&self, symbol: impl Into<String>) -> Result<Value>
Get Naver trend data with a daily frequency for a project that is associated with a given symbol. The values in response are normalized into a range from 0 to 100, where 0 corresponds to a minimum interest, and 100 corresponds to a maximum interest of users in Naver search engine.
Sourcepub fn symbols(&self) -> Result<Value>
pub fn symbols(&self) -> Result<Value>
Get crypto symbols that are accepted by Naver trend endpoint.
Trait Implementations§
Source§fn clone(&self) -> NaverTrend
fn clone(&self) -> NaverTrend
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§fn new(api_key: String) -> NaverTrend
fn new(api_key: String) -> NaverTrend
Creates a new instance of the implementing type using the provided API key.
Source§fn new_with_base_url(api_key: String, base_url: String) -> NaverTrend
fn new_with_base_url(api_key: String, base_url: String) -> NaverTrend
Creates a new instance of the implementing type using the provided API key and base URL.
Auto Trait Implementations§
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