Delegate the ExtractServers call.
diff --git a/rackspace/compute/v2/servers/delegate.go b/rackspace/compute/v2/servers/delegate.go
index 858aeef..ebbb820 100644
--- a/rackspace/compute/v2/servers/delegate.go
+++ b/rackspace/compute/v2/servers/delegate.go
@@ -75,3 +75,8 @@
 func WaitForStatus(c *gophercloud.ServiceClient, id, status string, secs int) error {
 	return os.WaitForStatus(c, id, status, secs)
 }
+
+// ExtractServers interprets the results of a single page from a List() call, producing a slice of Server entities.
+func ExtractServers(page pagination.Page) ([]os.Server, error) {
+	return os.ExtractServers(page)
+}