Enum PathconfVar

Source
#[repr(i32)]
pub enum PathconfVar {
Show 20 variants PC_FILESIZEBITS = 13, PC_LINK_MAX = 0, PC_MAX_CANON = 1, PC_MAX_INPUT = 2, PC_NAME_MAX = 3, PC_PATH_MAX = 4, PC_PIPE_BUF = 5, PC_2_SYMLINKS = 20, PC_ALLOC_SIZE_MIN = 18, PC_REC_INCR_XFER_SIZE = 14, PC_REC_MAX_XFER_SIZE = 15, PC_REC_MIN_XFER_SIZE = 16, PC_REC_XFER_ALIGN = 17, PC_SYMLINK_MAX = 19, PC_CHOWN_RESTRICTED = 6, PC_NO_TRUNC = 7, PC_VDISABLE = 8, PC_ASYNC_IO = 10, PC_PRIO_IO = 11, PC_SYNC_IO = 9,
}

Variants§

§

PC_FILESIZEBITS = 13

Minimum number of bits needed to represent, as a signed integer value, the maximum size of a regular file allowed in the specified directory.

Maximum number of links to a single file.

§

PC_MAX_CANON = 1

Maximum number of bytes in a terminal canonical input line.

§

PC_MAX_INPUT = 2

Minimum number of bytes for which space is available in a terminal input queue; therefore, the maximum number of bytes a conforming application may require to be typed as input before reading them.

§

PC_NAME_MAX = 3

Maximum number of bytes in a filename (not including the terminating null of a filename string).

§

PC_PATH_MAX = 4

Maximum number of bytes the implementation will store as a pathname in a user-supplied buffer of unspecified size, including the terminating null character. Minimum number the implementation will accept as the maximum number of bytes in a pathname.

§

PC_PIPE_BUF = 5

Maximum number of bytes that is guaranteed to be atomic when writing to a pipe.

Symbolic links can be created.

§

PC_ALLOC_SIZE_MIN = 18

Minimum number of bytes of storage actually allocated for any portion of a file.

§

PC_REC_INCR_XFER_SIZE = 14

Recommended increment for file transfer sizes between the POSIX_REC_MIN_XFER_SIZE and POSIX_REC_MAX_XFER_SIZE values.

§

PC_REC_MAX_XFER_SIZE = 15

Maximum recommended file transfer size.

§

PC_REC_MIN_XFER_SIZE = 16

Minimum recommended file transfer size.

§

PC_REC_XFER_ALIGN = 17

Recommended file transfer buffer alignment.

Maximum number of bytes in a symbolic link.

§

PC_CHOWN_RESTRICTED = 6

The use of chown and fchown is restricted to a process with appropriate privileges, and to changing the group ID of a file only to the effective group ID of the process or to one of its supplementary group IDs.

§

PC_NO_TRUNC = 7

Pathname components longer than {NAME_MAX} generate an error.

§

PC_VDISABLE = 8

This symbol shall be defined to be the value of a character that shall disable terminal special character handling.

§

PC_ASYNC_IO = 10

Asynchronous input or output operations may be performed for the associated file.

§

PC_PRIO_IO = 11

Prioritized input or output operations may be performed for the associated file.

§

PC_SYNC_IO = 9

Synchronized input or output operations may be performed for the associated file.

Trait Implementations§

Source§

impl Clone for PathconfVar

Source§

fn clone(&self) -> PathconfVar

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PathconfVar

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl FromStr for PathconfVar

Source§

type Err = ParseError

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<PathconfVar, <Self as FromStr>::Err>

Parses a string s to return a value of this type. Read more
Source§

impl Hash for PathconfVar

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl IntoEnumIterator for PathconfVar

Source§

impl PartialEq for PathconfVar

Source§

fn eq(&self, other: &PathconfVar) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl TryFrom<&str> for PathconfVar

Source§

type Error = ParseError

The type returned in the event of a conversion error.
Source§

fn try_from(s: &str) -> Result<PathconfVar, <Self as TryFrom<&str>>::Error>

Performs the conversion.
Source§

impl Copy for PathconfVar

Source§

impl Eq for PathconfVar

Source§

impl StructuralPartialEq for PathconfVar

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T, U> ExactFrom<T> for U
where U: TryFrom<T>,

Source§

fn exact_from(value: T) -> U

Source§

impl<T, U> ExactInto<U> for T
where U: ExactFrom<T>,

Source§

fn exact_into(self) -> U

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

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T, U> OverflowingInto<U> for T
where U: OverflowingFrom<T>,

Source§

impl<T, U> RoundingInto<U> for T
where U: RoundingFrom<T>,

Source§

impl<T, U> SaturatingInto<U> for T
where U: SaturatingFrom<T>,

Source§

impl<T> ToDebugString for T
where T: Debug,

Source§

fn to_debug_string(&self) -> String

Returns the String produced by Ts Debug implementation.

§Examples
use malachite_base::strings::ToDebugString;

assert_eq!([1, 2, 3].to_debug_string(), "[1, 2, 3]");
assert_eq!(
    [vec![2, 3], vec![], vec![4]].to_debug_string(),
    "[[2, 3], [], [4]]"
);
assert_eq!(Some(5).to_debug_string(), "Some(5)");
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.
Source§

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

Source§

fn vzip(self) -> V

Source§

impl<T, U> WrappingInto<U> for T
where U: WrappingFrom<T>,

Source§

fn wrapping_into(self) -> U

Source§

impl<T> PyThreadingConstraint for T