pub struct Registry { /* private fields */ }

Implementations§

source§

impl Registry

source

pub fn new_handle( host: String, token: Option<String>, handle: Easy, auth_required: bool ) -> Registry

Creates a new Registry.

§Example
use curl::easy::Easy;
use g_k_crates_io_client::Registry;

let mut handle = Easy::new();
// If connecting to crates.io, a user-agent is required.
handle.useragent("my_crawler (example.com/info)");
let mut reg = Registry::new_handle(String::from("https://crates.io"), None, handle, true);
source

pub fn set_token(&mut self, token: Option<String>)

source

pub fn host(&self) -> &str

source

pub fn host_is_crates_io(&self) -> bool

source

pub fn add_owners(&mut self, krate: &str, owners: &[&str]) -> Result<String>

source

pub fn remove_owners(&mut self, krate: &str, owners: &[&str]) -> Result<()>

source

pub fn list_owners(&mut self, krate: &str) -> Result<Vec<User>>

source

pub fn get_crate_data(&mut self, krate: &str) -> Result<String>

source

pub fn get_crate_dependencies( &mut self, krate: &str, version: &str ) -> Result<String>

source

pub fn publish(&mut self, krate: &NewCrate, tarball: &File) -> Result<Warnings>

source

pub fn search(&mut self, query: &str, limit: u32) -> Result<(Vec<Crate>, u32)>

source

pub fn yank(&mut self, krate: &str, version: &str) -> Result<()>

source

pub fn unyank(&mut self, krate: &str, version: &str) -> Result<()>

Auto Trait Implementations§

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, 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.