[][src]Struct postgresfixture::Runtime

pub struct Runtime {
    pub bindir: Option<PathBuf>,
}

Fields

bindir: Option<PathBuf>

Path to the directory containing the pg_ctl executable and other PostgreSQL binaries.

Can be omitted (i.e. None) to search PATH only.

Methods

impl Runtime[src]

pub fn new<P: AsRef<Path>>(bindir: P) -> Self[src]

pub fn version(&self) -> Result<Version, VersionError>[src]

Get the version number of PostgreSQL.

https://www.postgresql.org/support/versioning/ shows that version numbers are NOT SemVer compatible, so we have to parse them ourselves.

pub fn execute(&self, program: &str) -> Command[src]

Trait Implementations

impl Default for Runtime[src]

Auto Trait Implementations

impl RefUnwindSafe for Runtime

impl Send for Runtime

impl Sync for Runtime

impl Unpin for Runtime

impl UnwindSafe for Runtime

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> Same<T> for T

type Output = T

Should always be Self

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

type Error = Infallible

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.

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