Trait gio::CredentialsExt [−][src]
pub trait CredentialsExt {
fn get_unix_pid(&self) -> Result<i32, Error>;
fn get_unix_user(&self) -> Result<(), Error>;
fn is_same_user(&self, other_credentials: &Credentials) -> Result<(), Error>;
fn set_unix_user(&self, uid: u32) -> Result<(), Error>;
fn to_string(&self) -> String;
}Required Methods
fn get_unix_pid(&self) -> Result<i32, Error>
fn get_unix_user(&self) -> Result<(), Error>
fn is_same_user(&self, other_credentials: &Credentials) -> Result<(), Error>
fn set_unix_user(&self, uid: u32) -> Result<(), Error>
fn to_string(&self) -> String
Implementors
impl<O: IsA<Credentials>> CredentialsExt for O