Trait HasOwnerIdSetter

Source
pub trait HasOwnerIdSetter {
    type Out;

    // Required method
    fn with_owner_id(self, owner_id: DefId) -> Self::Out;
}

Required Associated Types§

Required Methods§

Source

fn with_owner_id(self, owner_id: DefId) -> Self::Out

Implementors§

Source§

impl<Base, Thir, Mir, OwnerId, Binder> HasOwnerIdSetter for State<Base, Thir, Mir, OwnerId, Binder>

Source§

type Out = State<Base, Thir, Mir, DefId, Binder>