pub struct NaverTrend { /* private fields */ }Implementations§
Sourcepub fn from_client(client: Client) -> Self
pub fn from_client(client: Client) -> Self
Wraps an already-built client (e.g. from ClientBuilder).
Sourcepub async fn get(
&self,
symbol: impl Into<String>,
) -> Result<Vec<NaverTrendView>>
pub async fn get( &self, symbol: impl Into<String>, ) -> Result<Vec<NaverTrendView>>
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.
Trait Implementations§
Source§fn clone(&self) -> NaverTrend
fn clone(&self) -> NaverTrend
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 moreAuto 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