Versions in this module Expand all Collapse all v1 v1.22.0 Jan 5, 2017 v1.21.0 Dec 8, 2016 Changes in this version + type MountUnmounter interface + func NewLoggingMounter(m Mounter, um Unmounter, logf func(string, ...interface{})) MountUnmounter + type Mounter interface + Mount func(source string, target string, fstype string, flags uintptr, data string) error + type MounterFunc func(string, string, string, uintptr, string) error + func (m MounterFunc) Mount(source string, target string, fstype string, flags uintptr, data string) error + type Unmounter interface + Unmount func(target string, flags int) error + type UnmounterFunc func(string, int) error + func (m UnmounterFunc) Unmount(target string, flags int) error