pub struct RouteRequest {
pub build_type_name: CapabilityTypeName,
pub availability: Option<Availability>,
pub directory_rights: Option<Flags>,
pub directory_intermediate_rights: Option<Flags>,
pub inherit_rights: Option<bool>,
pub sub_directory_path: Option<RelativePath>,
pub isolated_storage_path: Option<RelativePath>,
pub storage_sub_directory_path: Option<RelativePath>,
pub storage_source_moniker: Option<Moniker>,
pub event_stream_scope_moniker: Option<Moniker>,
pub event_stream_scope: Option<Box<[EventScope]>>,
pub skip_policy_checks: Option<bool>,
}Fields§
§build_type_name: CapabilityTypeName§availability: Option<Availability>§directory_rights: Option<Flags>§directory_intermediate_rights: Option<Flags>§inherit_rights: Option<bool>§sub_directory_path: Option<RelativePath>§isolated_storage_path: Option<RelativePath>§storage_sub_directory_path: Option<RelativePath>§storage_source_moniker: Option<Moniker>§event_stream_scope_moniker: Option<Moniker>§event_stream_scope: Option<Box<[EventScope]>>§skip_policy_checks: Option<bool>Trait Implementations§
Source§impl Clone for RouteRequest
impl Clone for RouteRequest
Source§fn clone(&self) -> RouteRequest
fn clone(&self) -> RouteRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RouteRequest
impl Debug for RouteRequest
Source§impl Default for RouteRequest
impl Default for RouteRequest
Source§impl FidlIntoNative<RouteRequest> for RouteRequest
impl FidlIntoNative<RouteRequest> for RouteRequest
fn fidl_into_native(self) -> RouteRequest
Source§impl NativeIntoFidl<RouteRequest> for RouteRequest
impl NativeIntoFidl<RouteRequest> for RouteRequest
fn native_into_fidl(self) -> RouteRequest
Source§impl PartialEq for RouteRequest
impl PartialEq for RouteRequest
impl StructuralPartialEq for RouteRequest
Auto Trait Implementations§
impl Freeze for RouteRequest
impl RefUnwindSafe for RouteRequest
impl Send for RouteRequest
impl Sync for RouteRequest
impl Unpin for RouteRequest
impl UnsafeUnpin for RouteRequest
impl UnwindSafe for RouteRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
Source§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
Source§impl<F, N> FidlIntoNative<Box<N>> for Fwhere
F: FidlIntoNative<N>,
impl<F, N> FidlIntoNative<Box<N>> for Fwhere
F: FidlIntoNative<N>,
fn fidl_into_native(self) -> Box<N>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
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