pub struct UseDirectory {
pub source: Option<Ref>,
pub source_name: Option<String>,
pub target_path: Option<String>,
pub rights: Option<Operations>,
pub subdir: Option<String>,
pub dependency_type: Option<DependencyType>,
pub availability: Option<Availability>,
pub source_dictionary: Option<String>,
}
Expand description
Declares a directory used by a component, which was offered to it.
Fields§
§source: Option<Ref>
§source_name: Option<String>
§target_path: Option<String>
§rights: Option<Operations>
§subdir: Option<String>
§dependency_type: Option<DependencyType>
§availability: Option<Availability>
§source_dictionary: Option<String>
Trait Implementations§
Source§impl Clone for UseDirectory
impl Clone for UseDirectory
Source§fn clone(&self) -> UseDirectory
fn clone(&self) -> UseDirectory
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UseDirectory
impl Debug for UseDirectory
Source§impl Encodable for UseDirectory
impl Encodable for UseDirectory
Source§type Encoded = WireUseDirectory
type Encoded = WireUseDirectory
The wire type for the value.
§const COPY_OPTIMIZATION: CopyOptimization<Self> = _
const COPY_OPTIMIZATION: CopyOptimization<Self> = _
An optimization flag that allows the bytes of this type to be copied directly during
encoding instead of calling
encode
. Read moreSource§impl<___E> Encode<___E> for UseDirectorywhere
___E: Encoder + ?Sized,
impl<___E> Encode<___E> for UseDirectorywhere
___E: Encoder + ?Sized,
Source§impl TakeFrom<WireUseDirectory> for UseDirectory
impl TakeFrom<WireUseDirectory> for UseDirectory
Source§fn take_from(from: &WireUseDirectory) -> Self
fn take_from(from: &WireUseDirectory) -> Self
Converts from the given
T
, taking any resources that can’t be cloned.§const COPY_OPTIMIZATION: CopyOptimization<Self> = _
const COPY_OPTIMIZATION: CopyOptimization<Self> = _
An optimization flag that allows the bytes of this type to be copied directly during
conversion instead of calling
take_from
. Read moreAuto Trait Implementations§
impl Freeze for UseDirectory
impl RefUnwindSafe for UseDirectory
impl Send for UseDirectory
impl Sync for UseDirectory
impl Unpin for UseDirectory
impl UnwindSafe for UseDirectory
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