Skip to main content

PadStart

Trait PadStart 

Source
pub trait PadStart<W, C> {
    type ReturnOperand;

    // Required method
    fn pad_start(&self, width: W, character: C) -> Self::ReturnOperand;
}

Required Associated Types§

Required Methods§

Source

fn pad_start(&self, width: W, character: C) -> Self::ReturnOperand

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<O, W, C> PadStart<W, C> for O