Struct shadertoy::SearchParams [] [src]

pub struct SearchParams<'a> {
    pub string: &'a str,
    pub sort_order: SearchSortOrder,
    pub filters: Vec<SearchFilter>,
}

Search parameters for Client::search.

Fields

Search string, set as empty to get ALL shadertoys.

Sort order of resulting list of shaders.

Inclusion filters, only the shadertoys matching this filter will be included in the result.

Trait Implementations

impl<'a> Debug for SearchParams<'a>
[src]

[src]

Formats the value using the given formatter. Read more

impl<'a> PartialEq for SearchParams<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<'a> Clone for SearchParams<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<'a> Send for SearchParams<'a>

impl<'a> Sync for SearchParams<'a>