pub struct IntentFilterData {
pub scheme: Option<String>,
pub host: Option<String>,
pub port: Option<String>,
pub path: Option<String>,
pub path_pattern: Option<String>,
pub path_prefix: Option<String>,
pub mime_type: Option<String>,
}Expand description
Android intent filter data 元素.
Fields§
§scheme: Option<String>§host: Option<String>§port: Option<String>§path: Option<String>§path_pattern: Option<String>§path_prefix: Option<String>§mime_type: Option<String>Trait Implementations§
Source§impl Clone for IntentFilterData
impl Clone for IntentFilterData
Source§fn clone(&self) -> IntentFilterData
fn clone(&self) -> IntentFilterData
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 IntentFilterData
impl Debug for IntentFilterData
Source§impl Default for IntentFilterData
impl Default for IntentFilterData
Source§fn default() -> IntentFilterData
fn default() -> IntentFilterData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IntentFilterData
impl<'de> Deserialize<'de> for IntentFilterData
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
Auto Trait Implementations§
impl Freeze for IntentFilterData
impl RefUnwindSafe for IntentFilterData
impl Send for IntentFilterData
impl Sync for IntentFilterData
impl Unpin for IntentFilterData
impl UnwindSafe for IntentFilterData
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