pub struct ContainerExistsOpts {
pub do_not_follow_symlinks: Option<bool>,
pub expected_type: Option<ExistsType>,
}
Fields§
§do_not_follow_symlinks: Option<bool>
If specified, do not follow symlinks.
expected_type: Option<ExistsType>
If specified, also validate the type of file (e.g. “REGULAR_TYPE”, “DIRECTORY_TYPE”, or “SYMLINK_TYPE”).
Trait Implementations§
Source§impl Debug for ContainerExistsOpts
impl Debug for ContainerExistsOpts
Source§impl PartialEq for ContainerExistsOpts
impl PartialEq for ContainerExistsOpts
impl StructuralPartialEq for ContainerExistsOpts
Auto Trait Implementations§
impl Freeze for ContainerExistsOpts
impl RefUnwindSafe for ContainerExistsOpts
impl Send for ContainerExistsOpts
impl Sync for ContainerExistsOpts
impl Unpin for ContainerExistsOpts
impl UnwindSafe for ContainerExistsOpts
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more