[]Struct ostree::KernelArgs

pub struct KernelArgs(_);

Methods

impl KernelArgs[src]

pub fn append(&mut self, arg: &str)[src]

pub fn append_argv(&mut self, argv: &[&str])[src]

pub fn append_argv_filtered(&mut self, argv: &[&str], prefixes: &[&str])[src]

pub fn append_proc_cmdline<P: IsA<Cancellable>>(
    &mut self,
    cancellable: Option<&P>
) -> Result<(), Error>
[src]

pub fn delete(&mut self, arg: &str) -> Result<(), Error>[src]

pub fn delete_key_entry(&mut self, key: &str) -> Result<(), Error>[src]

pub fn get_last_value(&self, key: &str) -> Option<GString>[src]

pub fn new_replace(&mut self, arg: &str) -> Result<(), Error>[src]

pub fn parse_append(&mut self, options: &str)[src]

pub fn replace(&mut self, arg: &str)[src]

pub fn replace_argv(&mut self, argv: &[&str])[src]

pub fn replace_take(&mut self, arg: &str)[src]

pub fn to_strv(&self) -> Vec<GString>[src]

pub fn from_string(options: &str) -> KernelArgs[src]

pub fn new() -> KernelArgs[src]

Trait Implementations

impl Clone for KernelArgs

impl Debug for KernelArgs[src]

impl Default for KernelArgs[src]

impl Display for KernelArgs[src]

impl Eq for KernelArgs[src]

impl<T: AsRef<str>> From<T> for KernelArgs[src]

impl Hash for KernelArgs[src]

impl Ord for KernelArgs[src]

impl PartialEq<KernelArgs> for KernelArgs[src]

impl PartialOrd<KernelArgs> for KernelArgs[src]

impl StructuralEq for KernelArgs[src]

impl StructuralPartialEq for KernelArgs[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.