pub struct ParsedExpose {Show 16 fields
pub service: Option<Spanned<OneOrMany<Name>>>,
pub protocol: Option<Spanned<OneOrMany<Name>>>,
pub directory: Option<Spanned<OneOrMany<Name>>>,
pub runner: Option<Spanned<OneOrMany<Name>>>,
pub resolver: Option<Spanned<OneOrMany<Name>>>,
pub dictionary: Option<Spanned<OneOrMany<Name>>>,
pub config: Option<Spanned<OneOrMany<Name>>>,
pub from: Spanned<OneOrMany<ExposeFromRef>>,
pub to: Option<Spanned<ExposeToRef>>,
pub as: Option<Spanned<Name>>,
pub rights: Option<Spanned<Rights>>,
pub subdir: Option<Spanned<RelativePath>>,
pub event_stream: Option<Spanned<OneOrMany<Name>>>,
pub scope: Option<Spanned<OneOrMany<EventScope>>>,
pub availability: Option<Spanned<Availability>>,
pub source_availability: Option<Spanned<SourceAvailability>>,
}Fields§
§service: Option<Spanned<OneOrMany<Name>>>§protocol: Option<Spanned<OneOrMany<Name>>>§directory: Option<Spanned<OneOrMany<Name>>>§runner: Option<Spanned<OneOrMany<Name>>>§resolver: Option<Spanned<OneOrMany<Name>>>§dictionary: Option<Spanned<OneOrMany<Name>>>§config: Option<Spanned<OneOrMany<Name>>>§from: Spanned<OneOrMany<ExposeFromRef>>§to: Option<Spanned<ExposeToRef>>§as: Option<Spanned<Name>>§rights: Option<Spanned<Rights>>§subdir: Option<Spanned<RelativePath>>§event_stream: Option<Spanned<OneOrMany<Name>>>§scope: Option<Spanned<OneOrMany<EventScope>>>§availability: Option<Spanned<Availability>>§source_availability: Option<Spanned<SourceAvailability>>Trait Implementations§
Source§impl Clone for ParsedExpose
impl Clone for ParsedExpose
Source§fn clone(&self) -> ParsedExpose
fn clone(&self) -> ParsedExpose
Returns a duplicate 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 ParsedExpose
impl Debug for ParsedExpose
Source§impl<'de> Deserialize<'de> for ParsedExpose
impl<'de> Deserialize<'de> for ParsedExpose
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hydrate for ParsedExpose
impl Hydrate for ParsedExpose
Source§impl PartialEq for ParsedExpose
impl PartialEq for ParsedExpose
impl StructuralPartialEq for ParsedExpose
Auto Trait Implementations§
impl Freeze for ParsedExpose
impl RefUnwindSafe for ParsedExpose
impl Send for ParsedExpose
impl Sync for ParsedExpose
impl Unpin for ParsedExpose
impl UnwindSafe for ParsedExpose
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<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