pub enum MessageRequestView<'a> {
FileByFilename(&'a str),
FileContainingSymbol(&'a str),
FileContainingExtension(Box<ExtensionRequestView<'a>>),
AllExtensionNumbersOfType(&'a str),
ListServices(&'a str),
}Variants§
FileByFilename(&'a str)
FileContainingSymbol(&'a str)
FileContainingExtension(Box<ExtensionRequestView<'a>>)
AllExtensionNumbersOfType(&'a str)
ListServices(&'a str)
Trait Implementations§
Source§impl<'a> Clone for MessageRequest<'a>
impl<'a> Clone for MessageRequest<'a>
Source§fn clone(&self) -> MessageRequest<'a>
fn clone(&self) -> MessageRequest<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for MessageRequest<'a>
impl<'a> RefUnwindSafe for MessageRequest<'a>
impl<'a> Send for MessageRequest<'a>
impl<'a> Sync for MessageRequest<'a>
impl<'a> Unpin for MessageRequest<'a>
impl<'a> UnsafeUnpin for MessageRequest<'a>
impl<'a> UnwindSafe for MessageRequest<'a>
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