pub trait ODataLink<RHS = Self> {
    fn download_link(&self) -> Option<String>;
    fn metadata_link(&self) -> Option<String>;
    fn next_link(&self) -> Option<String>;
    fn delta_link(&self) -> Option<String>;
}

Required Methods

Get the download URL.

Get the OData context URL.

Get the OData next link URL.

Get the OData delta link URL.

Implementations on Foreign Types

Implementors