pub struct SearchResults {
pub aws_ip_ranges: Box<AwsIpRanges>,
pub prefix_matches: BTreeMap<IpNetwork, BTreeSet<AwsIpPrefix>>,
pub prefixes_not_found: BTreeSet<IpNetwork>,
}
Expand description
Search results containing the matching AwsIpRanges, a map of found prefixes, and the set of prefixes not found in the AWS IP Ranges.
Fields§
§aws_ip_ranges: Box<AwsIpRanges>
AwsIpRanges object containing the matching AWS IP Prefixes.
prefix_matches: BTreeMap<IpNetwork, BTreeSet<AwsIpPrefix>>
Map of found IpNetwork prefixes to the sets of AwsIpPrefix records that contain the prefixes.
prefixes_not_found: BTreeSet<IpNetwork>
Set of IpNetwork prefixes not found in the AWS IP Ranges.
Trait Implementations§
Source§impl Clone for SearchResults
impl Clone for SearchResults
Source§fn clone(&self) -> SearchResults
fn clone(&self) -> SearchResults
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 SearchResults
impl Debug for SearchResults
Source§impl Default for SearchResults
impl Default for SearchResults
Source§fn default() -> SearchResults
fn default() -> SearchResults
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SearchResults
impl RefUnwindSafe for SearchResults
impl !Send for SearchResults
impl !Sync for SearchResults
impl Unpin for SearchResults
impl UnwindSafe for SearchResults
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