Reexport underlying iterators and do not implement Copy

Closes #138
This commit is contained in:
Abhishek Chanda
2021-02-15 11:12:15 -06:00
parent c26c836b39
commit 1f3e10f73d
3 changed files with 5 additions and 5 deletions

View File

@ -271,7 +271,7 @@ impl From<Ipv4Addr> for Ipv4Network {
}
}
#[derive(Copy, Clone, Debug)]
#[derive(Clone, Debug)]
pub struct Ipv4NetworkIterator {
next: Option<u32>,
end: u32,

View File

@ -249,7 +249,7 @@ impl From<Ipv6Addr> for Ipv6Network {
}
}
#[derive(Copy, Clone, Debug)]
#[derive(Clone, Debug)]
pub struct Ipv6NetworkIterator {
next: Option<u128>,
end: u128,

View File

@ -3,7 +3,7 @@
#![crate_type = "lib"]
#![doc(html_root_url = "https://docs.rs/ipnetwork/0.17.0")]
#![deny(missing_copy_implementations,
#![deny(
missing_debug_implementations,
unsafe_code,
unused_extern_crates,
@ -16,9 +16,9 @@ mod ipv4;
mod ipv6;
pub use crate::common::IpNetworkError;
use crate::ipv4::Ipv4NetworkIterator;
pub use crate::ipv4::Ipv4NetworkIterator;
pub use crate::ipv4::{ipv4_mask_to_prefix, Ipv4Network};
use crate::ipv6::Ipv6NetworkIterator;
pub use crate::ipv6::Ipv6NetworkIterator;
pub use crate::ipv6::{ipv6_mask_to_prefix, Ipv6Network};
/// Represents a generic network range. This type can have two variants: