/// Extensions for [references][gix_ref::Reference].
pubtraitReferenceExt{/// Attach [`Repository`][crate::Repository] to the given reference. It can be detached later with [`detach()]`.
fnattach(self, repo:&crate::Repository)->crate::Reference<'_>;}implReferenceExt forgix_ref::Reference{fnattach(self, repo:&crate::Repository)->crate::Reference<'_>{crate::Reference::from_ref(self, repo)}}