Enum discogs::data_structures::SearchResult [] [src]

pub enum SearchResult {
    Artist {
        data: Artist,
    },
    Master {
        data: Master,
    },
    Label {
        data: Label,
    },
    Release {
        data: Release,
    },
}

Variants

Fields of Artist

Fields of Master

Fields of Label

Fields of Release

Trait Implementations

impl Debug for SearchResult
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for SearchResult
[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 Send for SearchResult

impl Sync for SearchResult