[][src]Struct youtube_dl::SearchOptions

pub struct SearchOptions { /* fields omitted */ }

Specifies where to search, how many results to fetch and the query. The count defaults to 1, but can be changed with the with_count method.

Implementations

impl SearchOptions[src]

pub fn youtube(query: impl Into<String>) -> Self[src]

Search on youtube.com

pub fn google(query: impl Into<String>) -> Self[src]

Search with Google's video search

pub fn yahoo(query: impl Into<String>) -> Self[src]

Search with yahoo.com's video search

pub fn soundcloud(query: impl Into<String>) -> Self[src]

Search on SoundCloud

pub fn custom(search_type: impl Into<String>, query: impl Into<String>) -> Self[src]

Search with a custom search provider (in case this library falls behind the feature set of youtube-dl)

pub fn with_count(self, count: usize) -> Self[src]

Set the count for how many videos at most to retrieve from the search.

Trait Implementations

impl Clone for SearchOptions[src]

impl Debug for SearchOptions[src]

impl Display for SearchOptions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.