[][src]Struct testcontainers::core::Ports

pub struct Ports { /* fields omitted */ }

The exposed ports of a running container.

Implementations

impl Ports[src]

pub fn add_mapping(&mut self, internal: u16, host: u16) -> &mut Self[src]

Registers the mapping of an exposed port.

pub fn map_to_host_port(&self, internal_port: u16) -> Option<u16>[src]

Returns the host port for the given internal port.

Trait Implementations

impl Debug for Ports[src]

impl Default for Ports[src]

impl PartialEq<Ports> for Ports[src]

impl StructuralPartialEq for Ports[src]

Auto Trait Implementations

impl RefUnwindSafe for Ports

impl Send for Ports

impl Sync for Ports

impl Unpin for Ports

impl UnwindSafe for Ports

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,