Struct hf_hub::Repo

source ·
pub struct Repo { /* private fields */ }
Expand description

The representation of a repo on the hub.

Implementations§

source§

impl Repo

source

pub fn new(repo_id: String, repo_type: RepoType) -> Self

Repo with the default branch (“main”).

source

pub fn with_revision( repo_id: String, repo_type: RepoType, revision: String ) -> Self

fully qualified Repo

source

pub fn model(repo_id: String) -> Self

Shortcut for Repo::new with RepoType::Model

source

pub fn dataset(repo_id: String) -> Self

Shortcut for Repo::new with RepoType::Dataset

source

pub fn space(repo_id: String) -> Self

Shortcut for Repo::new with RepoType::Space

source

pub fn folder_name(&self) -> String

The normalized folder nameof the repo within the cache directory

source

pub fn revision(&self) -> &str

The revision

source

pub fn url(&self) -> String

The actual URL part of the repo

source

pub fn url_revision(&self) -> String

Revision needs to be url escaped before being used in a URL

source

pub fn api_url(&self) -> String

Used to compute the repo’s url part when accessing the metadata of the repo

Trait Implementations§

source§

impl Clone for Repo

source§

fn clone(&self) -> Repo

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

§

impl Freeze for Repo

§

impl RefUnwindSafe for Repo

§

impl Send for Repo

§

impl Sync for Repo

§

impl Unpin for Repo

§

impl UnwindSafe for Repo

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V