Struct PoolOperations

Source
pub struct PoolOperations<'a> { /* private fields */ }
Expand description

Operations on libvirt storage pools

Implementations§

Source§

impl<'a> PoolOperations<'a>

Source

pub fn list( &self, flags: ListAllStoragePoolsFlags, ) -> LibvirtFuture<Vec<StoragePool>>

Collect the list of storage pools

Source

pub fn define(&self, xml: &str) -> LibvirtFuture<StoragePool>

Define an inactive persistent storage pool or modify an existing persistent one from the XML description.

Source

pub fn lookup_by_uuid(&self, uuid: &Uuid) -> LibvirtFuture<StoragePool>

Fetch a storage pool based on its globally unique id

Source

pub fn lookup_by_name(&self, name: &str) -> LibvirtFuture<StoragePool>

Fetch a storage pool based on its name

Source

pub fn start(&self, pool: &StoragePool) -> LibvirtFuture<()>

Starts an inactive storage pool

Source

pub fn destroy(&self, pool: &StoragePool) -> LibvirtFuture<()>

Destroy an active storage pool. This will deactivate the pool on the host, but keep any persistent config associated with it. If it has a persistent config it can later be restarted with start()

Source

pub fn undefine(&self, pool: StoragePool) -> LibvirtFuture<()>

Undefine an inactive storage pool

Source

pub fn list_volume_names( &self, pool: &StoragePool, ) -> LibvirtFuture<Vec<String>>

Fetch list of storage volume names

Source

pub fn list_volumes(&self, pool: &StoragePool) -> LibvirtFuture<Vec<Volume>>

Collect the list of storage volumes

Source

pub fn info(&self, pool: &StoragePool) -> LibvirtFuture<StoragePoolInfo>

Auto Trait Implementations§

§

impl<'a> Freeze for PoolOperations<'a>

§

impl<'a> !RefUnwindSafe for PoolOperations<'a>

§

impl<'a> !Send for PoolOperations<'a>

§

impl<'a> !Sync for PoolOperations<'a>

§

impl<'a> Unpin for PoolOperations<'a>

§

impl<'a> !UnwindSafe for PoolOperations<'a>

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

Source§

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

Source§

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.